unboundedpress/node_modules/is-finite
2019-07-23 04:28:47 +00:00
..
index.js initial commit 2019-07-23 04:28:47 +00:00
license initial commit 2019-07-23 04:28:47 +00:00
package.json initial commit 2019-07-23 04:28:47 +00:00
readme.md initial commit 2019-07-23 04:28:47 +00:00

is-finite Build Status

ES2015 Number.isFinite() ponyfill

Install

$ npm install --save is-finite

Usage

var numIsFinite = require('is-finite');

numIsFinite(4);
//=> true

numIsFinite(Infinity);
//=> false

License

MIT © Sindre Sorhus