/ piacw.com / dev / final / node_modules / object-is /

[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]node_modules/2 years ago -  
[DIR]test/2 years ago -  
[TXT]CHANGELOG.md2 years ago 17K0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]LICENSE2 years ago1.1K0fb859dc fixed mobile overflwo options [كارل مبارك]
[TXT]README.md2 years ago1.8K0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]auto.js2 years ago 36 0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]implementation.js2 years ago286 0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]index.js2 years ago409 0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]package.json2 years ago3.2K0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]polyfill.js2 years ago181 0fb859dc fixed mobile overflwo options [كارل مبارك]
[   ]shim.js2 years ago306 0fb859dc fixed mobile overflwo options [كارل مبارك]
README.md

#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

Apache/2.4.38 (Debian) Server at www.karls.computer Port 80