jack e1a2621c78 update | il y a 2 ans | |
---|---|---|
.. | ||
lib | il y a 2 ans | |
test | il y a 2 ans | |
.editorconfig | il y a 2 ans | |
.npmignore | il y a 2 ans | |
.travis.yml | il y a 2 ans | |
LICENSE | il y a 2 ans | |
README.md | il y a 2 ans | |
package.json | il y a 2 ans | |
yarn.lock | il y a 2 ans |
Checks whether provided parameter looks like a number
true
if val
looks like a number, false
otherwiseconst isNumberLike = require('is-number-like')
isNumberLike('2') // true
isNumberLike('a') // false