1.0.0 • Published 1 year ago

@hoangcung1804npm/libero-similique-animi v1.0.0

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

@hoangcung1804npm/libero-similique-animi Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

An ES2019 spec-compliant Array.prototype.flat 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.flat 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 @hoangcung1804npm/libero-similique-animi

Usage/Examples

var flat = require('@hoangcung1804npm/libero-similique-animi');
var assert = require('assert');

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

assert.deepEqual(flat(arr, 1), [1, 2, 3, [4]]);
var flat = require('@hoangcung1804npm/libero-similique-animi');
var assert = require('assert');
/* when Array#flat is not present */
delete Array.prototype.flat;
var shimmedFlat = flat.shim();

assert.equal(shimmedFlat, flat.getPolyfill());
assert.deepEqual(arr.flat(), flat(arr));
var flat = require('@hoangcung1804npm/libero-similique-animi');
var assert = require('assert');
/* when Array#flat is present */
var shimmedIncludes = flat.shim();

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

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

Tests

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

functionsiteratornumberbindworkspace:*toStringTagcommandprivate datacall-bindtapeobjexpressfpshasconcurrencyyupisloggingsettingsoption__proto__watchFilevaluesCSSStyleDeclarationfindupString.prototype.matchAllgradients csscallbindstatelessprototypesafecirculartypeerrorargsnested cssrdscss lessvariables in cssiterationlazycompile lessieparseridle$.extendsuperstructstyleguideES2018argvcloudfrontURLAsyncIteratorcall-boundcoerciblepreprocessorUint8ClampedArrayES8JSONbyteOffsetenderUint8Arraystringifya11ymapreducereduceinspectextendIteratorECMAScript 2021Object.getPrototypeOfbluebirdhasOwnRxregular expressionsesrandomfastcopylockfileECMAScript 2016validationfilebrowserslistreadablefolderagentstreamsdebugsuperagentclassnamescheme-validationsortedpropcloudsearchquerystringschemanativerangeerrorinsnsstreamfind-uptty[[Prototype]]definetypetrimviewFloat64ArrayECMAScript 2019bannerRFC-6455callboundmapMicrosoftpicomatchreal-timenodejsparsingmetadatareadcss-in-jsautoscalingprefixxhrmocharegexpStyleSheetsiderouteECMAScript 2015redirectoffsetconfigurableencryptionES3accessortoucheventEmitteres-shimsargumentclistarterguidhooksflagsBigInt64ArraynegativelastReflect.getPrototypeOftelephoneArray.prototype.flatMapfindLastIndexdataefficientHyBiajvmkdirpconnectstringtimees-abstractfast-deep-clonematchAllpushassertuprapidwebcloudformationgetPrototypeOfavadiffbrowserfastwatchercontainsredux-toolkit.envsyntaxerrorhas-owncollection.es6sqsruntimegetintrinsictextwalkinginputslotfastifyspecCSSdeep-copymergegraphqlES2022getOwnPropertyDescriptortrimEndcomputed-typesbufferseslintpluginiamReactiveXglaciersimpledbartnegative zerodependency manageres2017jasminepostcssbddpackage managerloadingECMAScript 5visualFloat32Arraythroatstringifierpropertystyleminimalfast-deep-copystyled-componentsmobileString.prototype.trimgdprlibphonenumberpnpm9hardlinkschromesetPrototypeOfenumerableTypeBoxsymlinkES5jsonspeedbatchutilclientwarningmrufs256outputes8dataviewFunction.prototype.nameauthpropertiesInt8Arraybeanstalkwhatwgwaitmoveglobchinesepatchreusename-0everywidthes2015fetchhasOwnPropertysharedlocationarktypeECMAScript 6takeInt32ArrayPromiseObject.valuespackagesemitjsonpathconcat0frameworkInt16ArrayObject.keyssetflatUnderscoreinferencestylesheetcjkES2020wgetsomeownstylescharacterjQueryArray.prototype.findLasteslintforEachcloudtrailwritemodulesaccessibilityponyfillformattingmiddlewarewritablehttpsclassnamesreact-hooksstableECMAScript 2022consumedeep-clonebundlingisConcatSpreadablebusytrimStartfluxjssymbolzodpostcss-pluginshimhotES2019YAMLfixed-widthdirectoryproxyArrayBuffer#slicetypedarraystdlibparselengthwalklinewraploadbalancingmodulenodepluginlruenvironmentindicatorbrowserlistpruneutilityweakmapcloudwatchliveecmascript
1.0.0

1 year ago