xiaofu-ruoyi-vue/node_modules/object-is
ffr b5131258d8 第一次提交 2024-04-23 08:05:40 +08:00
..
test 第一次提交 2024-04-23 08:05:40 +08:00
.eslintrc 第一次提交 2024-04-22 22:43:17 +08:00
.nycrc 第一次提交 2024-04-23 08:05:40 +08:00
CHANGELOG.md 第一次提交 2024-04-22 22:43:17 +08:00
LICENSE 第一次提交 2024-04-23 08:05:40 +08:00
README.md 第一次提交 2024-04-23 08:05:40 +08:00
auto.js 第一次提交 2024-04-23 08:05:40 +08:00
implementation.js 第一次提交 2024-04-23 08:05:40 +08:00
index.js 第一次提交 2024-04-23 08:05:40 +08:00
package.json 第一次提交 2024-04-23 08:05:40 +08:00
polyfill.js 第一次提交 2024-04-22 22:43:17 +08:00
shim.js 第一次提交 2024-04-22 22:43:17 +08:00

README.md

object-is Version Badge

github actions coverage 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.

This package implements the es-shim API interface. It works in an ES3-supported environment and complies with the spec.

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.equal(Object.is(arr, [1, 2]), false);

assert.ok(Object.is(0, 0));
assert.ok(Object.is(-0, -0));
assert.equal(Object.is(0, -0), false);

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