isnan
v0.0.0
Published
Test whether value is NaN
Downloads
9
Maintainers
Readme
isnan
Test whether value is NaN.
Installation
$ npm install isnanAPI
const isNaN = require('isnan');
isNaN('foo' / 1);
// => true
isNaN({ foo: 'bar' });
// => falseRunning tests
$ npm test