1.0.0 • Published 1 year ago

@ffras4vnpm/accusantium-mollitia-neque v1.0.0

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

@ffras4vnpm/accusantium-mollitia-neque Version Badge

github actions coverage dependency status dev dependency status License Downloads

npm badge

An ES5 spec-compliant Array.prototype.filter 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 spec.

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

Example

var filter = require('@ffras4vnpm/accusantium-mollitia-neque');
var assert = require('assert');

assert.deepEqual(filter([1, 2, 3], function (x) { return x >= 2; }), [2, 3]);
assert.deepEqual(filter([1, 2, 3], function (x) { return x <= 2; }), [1, 2]);
var filter = require('@ffras4vnpm/accusantium-mollitia-neque');
var assert = require('assert');
/* when Array#filter is not present */
delete Array.prototype.filter;
var shimmedFilter = filter.shim();
assert.equal(shimmedFilter, filter.getPolyfill());
var arr = [1, 2, 3];
var isOdd = function (x) { return x % 2 !== 0; };
assert.deepEqual(arr.filter(isOdd), filter(arr, isOdd));
var filter = require('@ffras4vnpm/accusantium-mollitia-neque');
var assert = require('assert');
/* when Array#filter is present */
var shimmedFilter = filter.shim();
assert.equal(shimmedFilter, Array.prototype.filter);
assert.deepEqual(arr.filter(isOdd), filter(arr, isOdd));

Tests

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

regexpschematypeInt8ArrayclassesprogressspringeventDispatcherdragES2016postcssapollopnpm9bytesymbolTypeScript3ddeepclonestringvarprunebootstrap lessrfc4122WeakMapqueueMicrotaskjsongroupstringifierfindLastlockfileBigInt64Arrayairbnbfilterprotocol-buffersdependenciesreusemimeinstallshellvaluespropertyECMAScript 2017jsdomgradients css3endercurriedaccessibilitycodessequencedescriptorbrowserslistes-shim APIoncepolyfillmimetypesPushavacolumnmomentinterruptsreducermkdirthroatassertionframeworkObject.fromEntriesl10neslintgenericsmodulecore-jsmergeObjectloggingstylesheetshebangsuperstructlanguagefullwidthasserturlincludestypanioncallbackFunction.prototype.namefullES2017commandStyleSheetECMAScript 2021ajaxclassnamesprivate dataargvpushfile systemjsonschemawatcherdeep-clonediffpreserve-symlinksbootstrap csspackagesdataViewtestparentsopenenvansistdlibdirECMAScript 2018ECMAScript 7Uint32ArrayfetchreactrequirecomparegetOwnPropertyDescriptorfastclonemaketslibcompile lesscommand-linestreamsuser-streamssetterflatMaptrimStartloadingautoprefixerwatchFileURLSearchParamswarningqueryprettyparseECMAScript 2019utilsmixinsbatchcircularStreames-shimsruntimetypeofless cssstyleguidesomeargsArray.prototype.flatMapES2018processdatastructureconsumemake direveryless mixinsiterationArrayBuffergetteresoptimizerjson-schema-validatorjasmineievariablesObject.keysmaplook-upWeakSetchinesedateprototypepackage.jsoninspectReflect.getPrototypeOfprotobufsetvestrmgetcurlcoercibleHyBicollectiones2017starterregexvaluecryptosanitizetddtouchspeed__proto__TypeBoxexpressionreal-timedebugthrottlettymonorepo[[Prototype]]css variable.envgroupBylengthawesomesaucestatussharedsuperagentes2015emojinodejssyntaxnameJSON-SchematypesafestreamtrimEndcall-boundUint8Arrayqsasyncflagsserializationequalitywidthinternal slotes-abstractjapanesereact poseloggeri18nrmdirdropPromiseArray.prototype.findLastIndexiterateflagpostcss-plugininferencefindjsjestbluebirdnested cssvisualmkdirpAsyncIteratorobjstatelessbrowseremitdescriptorsshimeast-asian-widthratejson-schema-validationarraysvalidateES3rangeerrorRegExp#flagsfast-copyuninstalltrimzeroaccessortypesvalidatorpuredeepcopyshrinkwrap
1.0.0

1 year ago