You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Rich Trott 7a8dd69e1c tools: update ESLint to 2.9.0 9 years ago
..
index.js tools: update eslint to v1.10.3 9 years ago
license tools: update eslint to v1.10.3 9 years ago
package.json tools: update ESLint to 2.9.0 9 years ago
readme.md tools: update eslint to v1.10.3 9 years ago

readme.md

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