Eric Foster 35b96bc934 initial commit před 6 roky
..
index.js initial commit před 6 roky
license initial commit před 6 roky
package.json initial commit před 6 roky
readme.md initial commit před 6 roky

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