1.0.0 • Published 1 year ago

@wemnyelezxnpm/iusto-totam-eius v1.0.0

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

@wemnyelezxnpm/iusto-totam-eius Version Badge

dependency status dev dependency status License Downloads

npm badge

An ESnext spec-compliant Array.prototype.toSorted 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.toSorted 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 @wemnyelezxnpm/iusto-totam-eius

Usage/Examples

var toSorted = require('@wemnyelezxnpm/iusto-totam-eius');
var assert = require('assert');

var input = [5, 4, 3, 2, 1, 0];

var output = toSorted(input);

assert.deepEqual(output, [0, 1, 2, 3, 4, 5]);
assert.notEqual(output, input);
assert.deepEqual(input, [5, 4, 3, 2, 1, 0]);
var toSorted = require('@wemnyelezxnpm/iusto-totam-eius');
var assert = require('assert');
/* when Array#toSorted is not present */
delete Array.prototype.toSorted;
var shimmed = toSorted.shim();

assert.equal(shimmed, toSorted.getPolyfill());
assert.deepEqual(input.toSorted(), toSorted(input));
var toSorted = require('@wemnyelezxnpm/iusto-totam-eius');
var assert = require('assert');
/* when Array#toSorted is present */
var shimmed = toSorted.shim();

assert.equal(shimmed, Array.prototype.toSorted);
assert.deepEqual(input.toSorted(), toSorted(input));

Tests

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

colorkoreanpackage.jsonsortchaiclassnameratelimitecmascriptes2016Array.prototype.findLastIndexmochasequenceerrorcollection.es6settingsspringstreams2yamlbufferduplexequalityfantasy-landio-ts-0batchgenericsutilgetintrinsicquerystringopencharactersauthratehttpsvalidinvariantfunctionshelperscjkxdgapolloprogressvariablesinstallponyfillchildhookformflattencontainsES3ECMAScript 2016watchless mixinsoperating-systemtranspiledependenciesrangeerrores-shimsexit.envincludespicomatchbootstrap cssbannerPromisestabletrimStartinstallerObject.iscorstyped arraywatcherpackagesfullcolumnajvassertionregexUnderscoreeslintconfigmkdirhttpwalkingcommand-linepolyfilltimesortedform-validationvares2015BigInt64ArrayStyleSheetschemadeep-copyboundxtermdragweakmappositivereact posetrimLeftECMAScript 3ECMAScript 5japaneseES2023windowscomputed-typesperformanceextenddeleteauthenticationexepropajaxprettyparentrapidawaitspecanimationes8ECMAScript 6tacitReactiveXshimramdaexpressionReactiveExtensionsredactjsonpathrmtddgetoptES2021compile lessfast-copyregular expressionpureeventDispatchercolourkeysoffsetobjectarraybufferiterateECMAScript 2023bcryptArray.prototype.containsfunctionfixed-widthuser-streamsreadablestreamqueueMicrotask@@toStringTagframeworkendersharedbddnpmarraysES2015classnamescallbindfullwidthutilitycodeschromedebugstringifierhardlinksES6validateObject.assigndayjsrequiredatastructuredeep-clonedescriptionunicodeInt8ArrayreduximmutabletakewaitObservableslanguagepluginprototypetermfindLastIndexcharactergroupByparentsYAMLcallbackwordwrapbabel-coreencryptionforEachArray.prototype.filterMap6to5keyaccessibilitytaskregexpbrowserlistclientpostcss-pluginxdg-opencss nestingmiddlewaredescriptorscachefilePushnegative zeroeventslimitedstyleguiderecursivemruinputwgetwarningcryptofastcloneArray.prototype.findLastpostcssfilternamesescapewalkttyresolvestartformattingcore-jsnegativediffclonestatuselectronefficientdeepObjectvestfromgetframervaluesclifull-widthi18nshebangvariables in csstypergbstringletextensionURLSearchParamsless.jsmimetypesimportObject.definePropertyfolderpatchrequestgradients cssargparsecolorsthroattapewidthdotenvshamECMAScript 2022linewrapcss lesswraplibphonenumberweaksettrimRightjwtvalidationl10nxhrjsdombluebirdasserts_.extendHyBimkdirpvalidatormomentArray.prototype.flattennumbersliceECMAScript 7promiseerror-handlingwaapiconsoleavaAsyncIteratorJSONjest
1.0.0

1 year ago