1.0.0 • Published 14 days ago

@a-2-c-2-anpm/odit-atque-harum v1.0.0

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

@a-2-c-2-anpm/odit-atque-harum Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

An ES2017 spec-compliant Object.entries shim. Invoke its "shim" method to shim Object.entries if it is unavailable or noncompliant.

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

Most common usage:

var assert = require('assert');
var entries = require('@a-2-c-2-anpm/odit-atque-harum');

var obj = { a: 1, b: 2, c: 3 };
var expected = [['a', 1], ['b', 2], ['c', 3]];

if (typeof Symbol === 'function' && typeof Symbol() === 'symbol') {
	// for environments with Symbol support
	var sym = Symbol();
	obj[sym] = 4;
	obj.d = sym;
	expected.push(['d', sym]);
}

assert.deepEqual(entries(obj), expected);

if (!Object.entries) {
	entries.shim();
}

assert.deepEqual(Object.entries(obj), expected);

Tests

Simply clone the repo, npm install, and run npm test

globObjectjsdomjoiclassnamesebsfixed-widthmime-dbspeedwalkfast-clonestdlibmoverdseslintconfigautoprefixerPushserializecurlcommand-lineclientworkflowmapweblogarraysgradients css3fetcheslintbrowserslistWeakMapECMAScript 2017nopehttpsdeepclonees-shim APIArrayBuffer.prototype.slicerm -rfquerystringmoduleObject.fromEntriessuperstructcolourJSON-Schemaperformanti18ntoSortedes-shimspreserve-symlinksweakmapString.prototype.trimemrsnsbreakiteratorpnpm9throatinvariantcolorsTypeBoxconcurrencyupdefinePropertytypeerrormimetypeslesscssqscliconfigurablecommanderasyncclassespersistentinternalrequest0reusedebuggerdependenciesdropec2artavatoolkitrm -frobjES2017eventDispatchertraversefull-widthpromisedom-testing-librarymergeisindicatorURLnativereact-testing-libraryruntimegetRxJSwalkingECMAScript 7findLastIndexsymbolsteststructuredCloneutilityObject.keysenvironmentxhremojifindLastlimitdirAsyncIteratorprototypestreams2regular expressionsfindupmkdirpelbesuuidpicomatchlinktimewordbreakcollection.es6slicewatchingqueryformatArray[[Prototype]]starterpreprocessorimportexportsortedratelimitES7regularMicrosoftconfigECMAScript 2015whatwgmonorepostringcompilerES2022Object.getPrototypeOfimmutablehasOwnPropertywgetchromiumcryptoMapstatelessdynamodbshimtrimStartinternal slotloggerwordwraptoolsairbnbcoregenericsprivate dataformtyped arrayconsumefastclonebyteless.jstrimRightmobileObject.definePropertyBigInt64Arraynested cssdeepES3prettyECMAScript 2019estreechinesevalidate@@toStringTagglaciertypedArray.prototype.findLastfunctionsimpledbes6es2018typesafewrapReactiveExtensionsarraybufferenderInt16ArrayInt32Arrayansies2016keytoArrayflagscheme-validationlocationbrowserlistclassnameboundremoveexpressioninspectdeterministiccodescharactershooksconcatsqstypescriptbundlinglockfileECMAScript 6commandYAMLcloudsearcheventEmitterSymbolStreamsrmjsES2015optimistcssdeletefilefpsUint32Array.envajaxgetintrinsicimportrateiamcloudformationES6stylesfilterconcatMapstreamefficientassertjavascriptspinnersortcode pointsfastpromisesassignJSONbootstrap lessbatchbrowserfromawesomesauceidleelectronparentnegativelooklimitedapollocachedescriptorsdeep-copylengthendpointes-abstractBigUint64Arrayeveryargumentvesttscallbackclass-validatorcorsserializationhasbootstrap cssttyCSSes5
1.0.0

14 days ago