2.2.14 • Published 1 year ago

@kollorg/architecto-ipsum v2.2.14

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

@kollorg/architecto-ipsum 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 @kollorg/architecto-ipsum

Usage/Examples

var toSorted = require('@kollorg/architecto-ipsum');
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('@kollorg/architecto-ipsum');
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('@kollorg/architecto-ipsum');
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

fetchTypedArrayes2018hooksBigInt64Arraywaitstringifiersortfast-clonelogwhichbufferECMAScript 2015TypeScriptlookminimalpurechildglobalThistextletArray.prototype.flattenkeyjsonschemaviewregexpES2016nodejscloudformationkarmabrowserwidthcore-js@@toStringTagECMAScript 3flatMapstreamsspringtoobjectcoverage3dECMAScript 5trimLeftansiSymbolfast-copyvarstypeECMAScript 2017schemecommandextracodessnsbabel-corepackage managerstreamhookformawsES7rulesnumberdeep-clonezerohas-owntoSortedvestdateArray.prototype.filterArrayBufferObjectsidetoolkitswfeslintpluginjapanesedefinePropertyArray.prototype.flatfindcompilercolorsRegExp.prototype.flagstelephonerdsECMAScript 2016namesenvmruRxinferencecharactersemrString.prototype.trimisConcatSpreadableownbanneres2015System.globalenvironmentremovetriminstallconfigsetsuperagentprotocol-buffersassertUint16ArraysettingsprunespecprogresscheckimportexportfindupqueueMicrotaskFunction.prototype.namebddequalitylruMicrosoftasciitraverseprotowritableebsrobustrss0ES2017function.lengthfunctionalshebangjavascriptshellinvarianttddes7shamistanbulconsolevareventsframercallbackTypeBoxworkflowimmutableArray.prototype.flatMapresolveargstoolsmanipulationcloneArray.prototype.findLastconfigurablesharedarraybufferUint32Arraytypedarraypoint-freeimmerapifastcopykoreanpinoselfutilsrmdirregular expressionsymbolyamltesterhtmldescriptionrapidObject.valuesStyleSheetsyntaxerrorbindslotiteratorsameValueZeroprefixlibphonenumberpackage.jsonsetImmediatewarningwritecirculargetPrototypeOftsworkspace:*appcommand-linedataViewponyfillformattingstyled-componentsagentYAMLes2016windowgetOwnPropertyDescriptorupjsxdotenvgetfnmatchrgbtrimStartcolourarrayshimsafenopecommanderdatarandomObject.ishashexecuteeslint-plugincssmoduledependenciesSetpackagesutilpromiseobj6to5outputxhrdescriptorsmatchES2018toReversedES2022typescriptcurriedbrowserlistsource mapObservablesslicedeterministicieiamelectronECMAScript 7es2017offsetestreemochabinString.prototype.matchAllgroupByES2019mapuuidutilityECMAScript 2018indicatorcreateboundfilterStreamCSSconstastnodeforEachrouteaccessibilitywget
2.2.14

1 year ago

2.2.13

1 year ago

2.2.12

1 year ago

2.2.11

1 year ago

2.2.10

1 year ago

2.2.9

1 year ago

2.1.9

1 year ago

2.1.8

1 year ago

2.1.7

1 year ago

2.1.6

1 year ago

2.1.5

1 year ago

2.1.4

1 year ago

1.1.4

1 year ago

1.1.3

1 year ago

1.1.2

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago