linx-simulator2/node_modules/number-is-nan
Sergiu Toma 6e1686be67 Simulator first commit 2019-09-18 11:11:16 +03:00
..
index.js Simulator first commit 2019-09-18 11:11:16 +03:00
license Simulator first commit 2019-09-18 11:11:16 +03:00
package.json Simulator first commit 2019-09-18 11:11:16 +03:00
readme.md Simulator first commit 2019-09-18 11:11:16 +03:00

readme.md

number-is-nan Build Status

ES2015 Number.isNaN() ponyfill

Install

$ npm install --save number-is-nan

Usage

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

numberIsNan(NaN);
//=> true

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

License

MIT © Sindre Sorhus