1.0.0 • Published 14 days ago

@zibuthe7j11/dignissimos-quae-neque v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
14 days ago

@zibuthe7j11/dignissimos-quae-neque 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('@zibuthe7j11/dignissimos-quae-neque');
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

es2017tapeiterationbundlerdeletecomparespeedcss nestingboundexecES2023CSSStyleDeclarationmake dirfile systemArrayBuffer#slicedataViewyupmime-dbmatchAlltranspileschemecloneuninstalllockfilees7intrinsicES2020json-schema-validationReflect.getPrototypeOfMapes-abstractTypedArrayformsvarinternaltypees2018findLastIndexObjectzodtypeerrorreduceajaxfunctionchaiStreamsreadablestreamlookArrayBuffer.prototype.sliceprettymakeglobjsxString.prototype.trimyamlAsyncIteratorsomesharedfast-copyprivateautoprefixerESwalkcore-jsimmutablephoneisimportl10ndeepoptioneses5pruneWeakSetcolourfseventspersistentsetterguidreadablepropertyObject.valuesbusyarraysaccessoreventDispatcherawaitextranegativefpserializerwaapiincludessameValueZerosafe_.extendfixed-widthlengthgdprrmdirescapecallbackparentsexit-codettyeveryECMAScript 2020rm -rfvalidastwatchingRxmacospasswordUint8ClampedArrayeslintplugincolorsharedarraybufferreact posetermjsdiffcurriedasyncArrayInt8Arrayfigletprotoredactieargumentgradients css3sanitizationRxJSpackage.jsonpushquotecss lessprefixcreatesequencedotenvWebSocketsprivate datagetOwnPropertyDescriptorpropertiescallbindES5propdebuggerweaksetrandomregexpreprocessorcommand-linecontainscompile lessopentrimLeftes2016commanderforEachflagsless.jshigher-ordertypesfulllessqueueramdanopelanguagebuffereslintassertserializefast-clonetoolsloggermkdirStreamECMAScript 2015arktypetypedarrayMicrosoftfilterentriesmobiledebuggesturesio-tsresolvegetoptbannerpathjwtregexpsignalstatelessObservablesECMAScript 2019concatMapfastcopystarterHyBiobjectwebdragArray.prototype.flatMapfastclonepackage managerjapanesevalidatormodulerm -frES6recursivereact-testing-libraryString.prototype.matchAllWebSocketfiledropterminalObject.assigndependency managerpatchArray.prototype.flatutilcssratelimitemojitrimEndlintprotocol-buffersrequiretacitES2017stylesfastutil.inspectnodenegative zerowatchisConcatSpreadabletakedominvariantkoreanpluginObservablehasschemamiddlewaretc39airbnbarraybufferpostcssRegExp.prototype.flagsdeepcopyemitcachereadnpmwatchFiletrimStartbcryptInt16ArraystreamstructuredClonemimetypesspinnersrmuuidconstutilsconfigurableeventEmitterts.enveslintconfigbyteminimalnodejsTypeScriptanimationmkdirscompilerbreakcss-in-jsextenddatastructuresignalsjson-schemaeslint-pluginwindowsdatastyletoolkitObject.getPrototypeOfspecwalkingES2018spinnersyntaximmerhardlinksclass-validatorreact-hooksworkspace:*descriptionlinkenderless csses-shimsjson-schema-validatorreduceroptimizerbatchflatMapirqECMAScript 20183dinspectupInt32Arraypicomatch
1.0.0

14 days ago