NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/object-is
2023-09-14 14:47:11 +08:00
..
.github/workflows 111 2023-09-14 14:47:11 +08:00
test 111 2023-09-14 14:47:11 +08:00
.eslintrc 111 2023-09-14 14:47:11 +08:00
.travis.yml 111 2023-09-14 14:47:11 +08:00
auto.js 111 2023-09-14 14:47:11 +08:00
CHANGELOG.md 111 2023-09-14 14:47:11 +08:00
implementation.js 111 2023-09-14 14:47:11 +08:00
index.js 111 2023-09-14 14:47:11 +08:00
LICENSE 111 2023-09-14 14:47:11 +08:00
package.json 111 2023-09-14 14:47:11 +08:00
polyfill.js 111 2023-09-14 14:47:11 +08:00
README.md 111 2023-09-14 14:47:11 +08:00
shim.js 111 2023-09-14 14:47:11 +08:00

#object-is Version Badge

Build Status dependency status dev dependency status License Downloads

npm badge

ES2015-compliant shim for Object.is - differentiates between -0 and +0, and can compare to NaN.

Essentially, Object.is returns the same value as === - but true for NaN, and false for -0 and +0.

Example

Object.is = require('object-is');
var assert = require('assert');

assert.ok(Object.is());
assert.ok(Object.is(undefined));
assert.ok(Object.is(undefined, undefined));
assert.ok(Object.is(null, null));
assert.ok(Object.is(true, true));
assert.ok(Object.is(false, false));
assert.ok(Object.is('foo', 'foo'));

var arr = [1, 2];
assert.ok(Object.is(arr, arr));
assert.notOk(Object.is(arr, [1, 2]));

assert.ok(Object.is(0, 0));
assert.ok(Object.is(-0, -0));
assert.notOk(Object.is(0, -0));

assert.ok(Object.is(NaN, NaN));
assert.ok(Object.is(Infinity, Infinity));
assert.ok(Object.is(-Infinity, -Infinity));

Tests

Simply clone the repo, npm install, and run npm test