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