object-is

ES2015-compliant shim for Object.is - differentiates between -0 and +0

MIT 11 个版本
安装
npm install object-is
yarn add object-is
pnpm add object-is
bun add object-is
README

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

版本列表
1.1.6 2024-02-28
1.1.5 2021-02-20
1.1.4 2020-11-27
1.1.3 2020-09-30
1.1.2 2020-04-14
1.1.1 2020-04-14
1.1.0 2020-04-14
1.0.2 2019-12-16
1.0.1 2014-08-28
1.0.0 2014-08-01
0.0.0 2014-02-18