| .. | |||
| lib | 10 months ago | ||
| test | 10 months ago | ||
| .editorconfig | 10 months ago | ||
| .npmignore | 10 months ago | ||
| .travis.yml | 10 months ago | ||
| LICENSE | 10 months ago | ||
| README.md | 10 months ago | ||
| package.json | 10 months ago | ||
| yarn.lock | 10 months ago | ||
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