Website/node_modules/number-is-nan
2015-12-04 02:31:39 -05:00
..
index.js Paper rendering works, and news fields get populated correctly now. 2015-12-04 02:31:39 -05:00
license Paper rendering works, and news fields get populated correctly now. 2015-12-04 02:31:39 -05:00
package.json Paper rendering works, and news fields get populated correctly now. 2015-12-04 02:31:39 -05:00
readme.md Paper rendering works, and news fields get populated correctly now. 2015-12-04 02:31:39 -05:00

number-is-nan Build Status

ES6 Number.isNaN() ponyfill

Ponyfill: A polyfill that doesn't overwrite the native method

Install

$ npm install --save number-is-nan

Usage

var numberIsNan = require('number-is-nan');

numberIsNan(NaN);
//=> true

numberIsNan('unicorn');
//=> false

License

MIT © Sindre Sorhus