Package Exports
- is-number-like
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-number-like) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
is-number-like
var looksLikeNumber = isNumberLike(val)
Checks whether provided parameter looks like a number
- val (any) - the value to check
- returns (boolean) looksLikeNumber -
trueifvallooks like a number,falseotherwise
const isNumberLike = require('is-number-like')
isNumberLike('2') // true
isNumberLike('a') // false