root 7621d6d22a 221005-1449-Kim | hace 2 años | |
---|---|---|
.. | ||
.github | hace 2 años | |
test | hace 2 años | |
.eslintignore | hace 2 años | |
.eslintrc | hace 2 años | |
.nycrc | hace 2 años | |
CHANGELOG.md | hace 2 años | |
LICENSE | hace 2 años | |
README.md | hace 2 años | |
auto.js | hace 2 años | |
implementation.js | hace 2 años | |
index.js | hace 2 años | |
package.json | hace 2 años | |
polyfill.js | hace 2 años | |
shim.js | hace 2 años |
ES2015-compliant shim for Number.isNaN - the global isNaN returns false positives.
This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the spec.
Number.isNaN = require('is-nan');
var assert = require('assert');
assert.notOk(Number.isNaN(undefined));
assert.notOk(Number.isNaN(null));
assert.notOk(Number.isNaN(false));
assert.notOk(Number.isNaN(true));
assert.notOk(Number.isNaN(0));
assert.notOk(Number.isNaN(42));
assert.notOk(Number.isNaN(Infinity));
assert.notOk(Number.isNaN(-Infinity));
assert.notOk(Number.isNaN('foo'));
assert.notOk(Number.isNaN(function () {}));
assert.notOk(Number.isNaN([]));
assert.notOk(Number.isNaN({}));
assert.ok(Number.isNaN(NaN));
Simply clone the repo, npm install
, and run npm test