object-is
DefinitelyTyped icon, indicating that this package has TypeScript declarations provided by the separate @types/object-is package

1.1.6 • Public • Published

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

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.1.6
    4,998,385
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.1.6
    4,998,385
  • 1.1.5
    32,263,131
  • 1.1.4
    2,542,237
  • 1.1.3
    1,459,755
  • 1.1.2
    3,328,379
  • 1.1.1
    1,411
  • 1.1.0
    5,019
  • 1.0.2
    2,003,477
  • 1.0.1
    1,794,056
  • 1.0.0
    20
  • 0.0.0
    406

Package Sidebar

Install

npm i object-is

Weekly Downloads

15,710,664

Version

1.1.6

License

MIT

Unpacked Size

27 kB

Total Files

15

Last publish

Collaborators

  • ljharb