1.0.0 • Published 10 days ago

@ryniaubenpm/nesciunt-cumque-facere v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
10 days ago

@ryniaubenpm/nesciunt-cumque-facere 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 @ryniaubenpm/nesciunt-cumque-facere

Usage/Examples

var toSorted = require('@ryniaubenpm/nesciunt-cumque-facere');
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('@ryniaubenpm/nesciunt-cumque-facere');
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('@ryniaubenpm/nesciunt-cumque-facere');
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

typanionmovenativejwtsiderm -frvaluesArrayBuffer#slicejsdomperformantassertsES2019toolkitmatchesfast-deep-copyreact poseletformattingvaluetrimcallbackserializerargparsecoercibleclassesshellinvariantkarmaredux-toolkitcompilerYAMLcss variablequerystringgdprvartestersigtermpromisespopmotionexpressionflattentrimRightexewatcherRxJSfast-copyeventEmitterECMAScript 2021walkingconsolereact animationreadablestreamecmascripttc39babelObject.entriesdotenvfast-cloneoutputparentsbrowserslistES2015limitcopyexitmonorepoes-abstractlesscssjavascriptcss-in-jselectronxdgsanitizationdeep-copytrimLeftinstallerES2018package managerWebSocketspackage.jsonesconsumehooksRegExp#flagsform-validationasciivalidationbindhttplookArray.prototype.flattenwordwrapstringifierredactharmonymulti-packagetaskmacosmergewordbreakgradients cssargumenterror-handlingdefinestatusfunctionsObject.assignframerloggingstreamsstyled-componentsSymboldataviewRFC-6455Object.keystypedconfigmatchAllESES2022censorpreprocessorajvprefixes6mkdirscurriedcreateECMAScript 2022iteratelibphonenumberdom-testing-libraryfunctionterminalcircularunicodeTypedArrayeslintconfiglinewrapcryptsuperagenttypescriptlazyworker$.extendreducershamgraphqlhookformxsstsremoveexpressweakmapSymbol.toStringTagCSSStyleDeclarationserializationlesswatchFilecolorevery-0prototypeECMAScript 7bytebufferratelimitkeynodejsfullwidthramdafilterargumentsrgblook-upECMAScript 2018es2015inspectBigInt64Arraysyntaxnested csscryptoArray.prototype.includesshimincludesStyleSheetconnectpyyamlkeysUint16ArrayposestructuredCloneformlimitedes-shim APIinternalratecompareclisetImmediateuser-streamsanimationframeworkemojipruneurlrmdirlinkflatCSSJSONefficientzodgetoptfromlockfileautoprefixerrm -rfsharedarraybufferdeepcopyschemeinstalliterationnegative zerojoi[[Prototype]]dombuffersmimermclonestreamObject.isxtermwatchpositiveimmertyped arraybusyidlelanguagexdg-openfindLastIndexpersistentrandomchaieslint-pluginsymbolqueuesignalairbnbregularpostcss-pluginnumbertypedarrays.envutilityreactcjkidthreeArrayBuffer.prototype.sliceentriesrapidyamldatastructureenvironmenttouchsymbolsisConcatSpreadableregexflagsbcryptcollectionspinnerscall-bindvestthrottlepushoptimistpoint-freedescriptorsAsyncIteratorsearchstartcolorsObservablesES2021slotpreserve-symlinksdependenciesfull-widthpropertiesisttygroupBystringInt32Arrayio-tsfixed-widthurlsansimoduleES7indicatorworkspace:*operating-systemsymlinkswrapgetintrinsiclistenersforEachextendes2016executablefssequencegetPrototypeOfECMAScript 2023utilitiessharedcmdeditorprivate dataasynchandlersclassnamesexit-codespawn0charactervalidatebootstrap lesscharactersaccessibilityrecursiveprocessES2016getirqfind-upvisualprotoless compilerfast-deep-cloneES8serializeECMAScript 2020fastifyUint32ArraydirarraysPushdatetrimEndbyteOffseteast-asian-widthperformancecodessetInt16ArraytypeswhichdeepclonereusedataViewsanitizeinterruptshardlinkstddwidth
1.0.0

10 days ago