1.0.0 • Published 1 year ago

@f1stnpm3/assumenda-totam-recusandae v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

@f1stnpm3/assumenda-totam-recusandae Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

An ES2017 spec-compliant Object.values shim. Invoke its "shim" method to shim Object.values 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 values = require('@f1stnpm3/assumenda-totam-recusandae');

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

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

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

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

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

Tests

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

environmentsortprivatelook-upfastclonebytereact-testing-libraryhardlinkspasswordlazystarterquerystringES6installercodesomitinferenceidvalidationarraysreusetoolkitcommand-line256testerECMAScript 2022es2018ec2has-ownbrowserrestfulnodeencryptionWebSocketsjasmineString.prototype.matchAllsharedES2022syntaxerrorclass-validatorreact-hookssliceless mixinsunicodereplaymochaiterationmatchbyteOffset_.extendeventDispatcherwindowscomparevisualhookformFloat64ArrayimportexportpropertiessideRxarraymrujoiweaksetkeybddjsonrouteparsersignalsconsolekarmaforEachexit-codebrowserslistsymlinkerrorfilewrapwalkaccessibilitycontainscssdatehothigher-orderIteratorsuperstructeslint-pluginaccessorawesomesauceescapepackage managermergefull-widthCSSStyleDeclarationwordbreakassertsefficientnameautoscalingfetchflatMapform-validation$.extendgetPrototypeOfserializationspinnersmake diroptionstatusgdpruuidspecisConcatSpreadablefunctionsECMAScript 2021StreamssyntaxtypeerrorintrinsicdefinerequestmatchAllframeworkdependency managerwatchdescriptionpathproxyassertionpackageincomputed-typesseswritetrimcode pointsstringES2019sigintgetstylel10nURLSearchParamscolumnsautheslintconfigsettingsmkdirstylingmkdirpvpclogmodulea11yasserteslintelmreducecompilerFunction.prototype.nameBigInt64ArrayWeakMapObservablecloudwatchTypeBoxlasttestes2017rapidmapreduceYAMLWeakSetismimetypesStyleSheetlockfilereduxwidthcollection.es6checkECMAScript 3structuredClonetrimLeftECMAScript 5workspace:*livetakedropgetOwnPropertyDescriptorcolourgetintrinsicdayjsPushimmercache
1.0.0

1 year ago