work.suroh.tk/node_modules/is-number-like
suroh 410082595a init 11ty commit 2019-12-02 13:22:45 +01:00
..
lib init 11ty commit 2019-12-02 13:22:45 +01:00
test init 11ty commit 2019-12-02 13:22:45 +01:00
.editorconfig init 11ty commit 2019-12-02 13:22:45 +01:00
.npmignore init 11ty commit 2019-12-02 13:22:45 +01:00
.travis.yml init 11ty commit 2019-12-02 13:22:45 +01:00
LICENSE init 11ty commit 2019-12-02 13:22:45 +01:00
README.md init 11ty commit 2019-12-02 13:22:45 +01:00
package.json init 11ty commit 2019-12-02 13:22:45 +01:00
yarn.lock init 11ty commit 2019-12-02 13:22:45 +01:00

README.md

is-number-like

Build Status js-standard-style npm version Coverage Status

var looksLikeNumber = isNumberLike(val)

Checks whether provided parameter looks like a number

  • val (any) - the value to check
  • returns (boolean) looksLikeNumber - true if val looks like a number, false otherwise
const isNumberLike = require('is-number-like')
isNumberLike('2') // true
isNumberLike('a') // false