Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
rpm-mcarman b9f7ec4306 First Commit há 3 anos
..
lib First Commit há 3 anos
test First Commit há 3 anos
.editorconfig First Commit há 3 anos
.npmignore First Commit há 3 anos
.travis.yml First Commit há 3 anos
LICENSE First Commit há 3 anos
README.md First Commit há 3 anos
package.json First Commit há 3 anos
yarn.lock First Commit há 3 anos

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