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