Eric Foster 35b96bc934 initial commit 6 years ago
..
index.js initial commit 6 years ago
license initial commit 6 years ago
package.json initial commit 6 years ago
readme.md initial commit 6 years ago

readme.md

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