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