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