Bakhtina Sofya b84cb877be 1st comm | пре 3 недеља | |
---|---|---|
.. | ||
.github | пре 3 недеља | |
test | пре 3 недеља | |
.editorconfig | пре 3 недеља | |
.eslintrc | пре 3 недеља | |
.nycrc | пре 3 недеља | |
CHANGELOG.md | пре 3 недеља | |
LICENSE | пре 3 недеља | |
README.md | пре 3 недеља | |
index.d.ts | пре 3 недеља | |
index.js | пре 3 недеља | |
package.json | пре 3 недеља | |
tsconfig.json | пре 3 недеља |
Is this value negative zero? === will lie to you.
var isNegativeZero = require('is-negative-zero');
var assert = require('assert');
assert.notOk(isNegativeZero(undefined));
assert.notOk(isNegativeZero(null));
assert.notOk(isNegativeZero(false));
assert.notOk(isNegativeZero(true));
assert.notOk(isNegativeZero(0));
assert.notOk(isNegativeZero(42));
assert.notOk(isNegativeZero(Infinity));
assert.notOk(isNegativeZero(-Infinity));
assert.notOk(isNegativeZero(NaN));
assert.notOk(isNegativeZero('foo'));
assert.notOk(isNegativeZero(function () {}));
assert.notOk(isNegativeZero([]));
assert.notOk(isNegativeZero({}));
assert.ok(isNegativeZero(-0));
Simply clone the repo, npm install
, and run npm test