1.0.0 • Published 1 year ago

@landmineaknpm/possimus-nam-velit v1.0.0

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

@landmineaknpm/possimus-nam-velit Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

An ESnext spec-compliant Array.prototype.at shim/polyfill/replacement that works as far down as ES3.

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

Because Array.prototype.at depends on a receiver (the this value), the main export takes the array to operate on as the first argument.

Getting started

npm install --save @landmineaknpm/possimus-nam-velit

Usage/Examples

var at = require('@landmineaknpm/possimus-nam-velit');
var assert = require('assert');

var arr = [1, [2], [], 3];

var results = at(arr, function (x, i) {
	assert.equal(x, arr[i]);
	return x;
});

assert.deepEqual(results, [1, 2, 3]);
var at = require('@landmineaknpm/possimus-nam-velit');
var assert = require('assert');
/* when Array#at is not present */
delete Array.prototype.at;
var shimmedFlatMap = at.shim();

var mapper = function (x) { return [x, 1]; };

assert.equal(shimmedFlatMap, at.getPolyfill());
assert.deepEqual(arr.at(mapper), at(arr, mapper));
var at = require('@landmineaknpm/possimus-nam-velit');
var assert = require('assert');
/* when Array#at is present */
var shimmedIncludes = at.shim();

var mapper = function (x) { return [x, 1]; };

assert.equal(shimmedIncludes, Array.prototype.at);
assert.deepEqual(arr.at(mapper), at(arr, mapper));

Tests

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

findupfilterprivateInt16ArraywidthES2023everynamecall-boundwebgroupByelectronES2015es-shim APIES2018loadingincludespropertywaapiautoscalingiterationliveargparseaccessibilityparsingexithasvpcless compilertapless csssharedarraybufferECMAScript 2017swfdefinerobustReflect.getPrototypeOfstyleguidetouchgetfunctionshashspeedwalkingESWebSocketsinferencesameValueZeroasciiratelimitjsonvalidationassertses-shimsconsolebundlingmulti-packageposecompile lessESnextpackage manageryupenvironmentlruqueueMicrotasksequencewatchtraversebufferansicommandRxinterruptsimportexportbatchshamnegative zerodependenciesmime-dbzodECMAScript 7globwordwrapqueuegradients css3regular expressionsidlefastclone$.extendgetintrinsicavadayjsunicodeStreamsextraloggingidfolderimportMicrosoftvesttslibhasOwnPropertyprotocol-bufferstssetImmediatezeroownObject.getPrototypeOflimitedCSSStyleDeclarationargvuninstallenvelbpostcss-pluginrateflux_.extendcode pointshooksdebuggervisualArray.prototype.findLastArray.prototype.flattencolorirqreact-hooksdiffstructuredClonelesss3react-testing-libraryfixed-widthUint32ArraymochamovecompareconcurrencybindimmertoStringTagsignalsiepushentries.env0watcherestreeUint8ClampedArraywgetUint16ArrayIteratorthreegrouplistenersECMAScript 2021mimetypesworkerbundlerinternalpreprocessorjsdomchromecallRegExp#flagscodesrecursivereuseutilArray.prototype.filtermapreduceflagsECMAScript 6Object.assignworkflowmkdirsfast-deep-clonecensorconfigweaksetenderES5performanceuuidArray.prototype.containsless.jssyntaxhttpsjoisymbollockfileserializerexpressionprogresssigtermdeep-copywritablecss-in-jsequalityes6rfc4122HyBiObject.definePropertyexit-codeFunction.prototype.namefunctionartbrowserdragstreamio-tsReactiveXArrayBuffertypedlintjasmineconcatcorsWeakSetcloudwatchArraysqstestingemroperating-systemdeepcopypersistentreact animationprotobuffullbddsortedgdprjapanesetoobjectaccessorrmdirflagflatpasswordArrayBuffer.prototype.sliceguidECMAScript 2015phonemapvalidatecoreiteratordotenvjsdiffclientschemeString.prototype.matchAlldataviewObservableschannelECMAScript 5rapid__proto__cloudfrontajaxruntimecollectionObject.entriesexpressremovemiddlewarechromiumequalpropertieshigher-orderbootstrap cssshrinkwrapcloudtrail@@toStringTagES2021descriptionbrowserslistrm -rftrimpromiseponyfilliteratees5package.jsonsomegraphqltoArrayiamshimfast-deep-copycolumnredactresolvecolourprivate datapipeeventDispatcherrgbspinnerArray.prototype.includesdebugpluginRegExp.prototype.flagssettingsPromisesharedfunctionalcharactergradients cssreduxObjectReactiveExtensionsjsmkdircontainscloudsearchtrimEndURLSearchParamslazyvaluesfind-upwatchingkarmamacosfastcopyCSSinstalleres2016internal slotassertionwaitWebSocketregular expressiondropurlmobilerm -frES2019directorynodeprettycircularregexplook-upsnsinvariantgenericsflatMapSymbolxhr
1.0.0

1 year ago