wazuh-kibana-app/node_modules/number-is-nan
2016-06-28 19:30:19 -07:00
..
index.js Initial commit 2016-06-28 19:30:19 -07:00
license Initial commit 2016-06-28 19:30:19 -07:00
package.json Initial commit 2016-06-28 19:30:19 -07:00
readme.md Initial commit 2016-06-28 19:30:19 -07: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