doc/node_modules/number-is-nan
2021-05-05 15:50:12 +02:00
..
index.js Move content to repo root 2021-05-05 15:50:12 +02:00
license Move content to repo root 2021-05-05 15:50:12 +02:00
package.json Move content to repo root 2021-05-05 15:50:12 +02:00
readme.md Move content to repo root 2021-05-05 15:50:12 +02:00

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