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