lucaconte 7cc26e831d presentations há 6 anos atrás
..
index.js 7cc26e831d presentations há 6 anos atrás
license 7cc26e831d presentations há 6 anos atrás
package.json 7cc26e831d presentations há 6 anos atrás
readme.md 7cc26e831d presentations há 6 anos atrás

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