jack e1a2621c78 update il y a 2 ans
..
lib e1a2621c78 update il y a 2 ans
test e1a2621c78 update il y a 2 ans
.editorconfig e1a2621c78 update il y a 2 ans
.npmignore e1a2621c78 update il y a 2 ans
.travis.yml e1a2621c78 update il y a 2 ans
LICENSE e1a2621c78 update il y a 2 ans
README.md e1a2621c78 update il y a 2 ans
package.json e1a2621c78 update il y a 2 ans
yarn.lock e1a2621c78 update il y a 2 ans

README.md

is-number-like

Build Status js-standard-style npm version Coverage Status

var looksLikeNumber = isNumberLike(val)

Checks whether provided parameter looks like a number

  • val (any) - the value to check
  • returns (boolean) looksLikeNumber - true if val looks like a number, false otherwise
const isNumberLike = require('is-number-like')
isNumberLike('2') // true
isNumberLike('a') // false