1.0.0 • Published 24 days ago

@ptkhanh94npm/facere-impedit-tempore v1.0.0

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

@ptkhanh94npm/facere-impedit-tempore 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 @ptkhanh94npm/facere-impedit-tempore

Usage/Examples

var toSorted = require('@ptkhanh94npm/facere-impedit-tempore');
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('@ptkhanh94npm/facere-impedit-tempore');
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('@ptkhanh94npm/facere-impedit-tempore');
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

Object.definePropertylibphonenumberes2017loggeresES3l10nredux-toolkitlinthandlersdebugrateexpressionsearchformattingInt32ArraywhatwgdatepopmotiontranspileminimalpropertyES5jsonpathmime-dbObservablessuperagentplugincurllastcssarraybufferObject.isoptimizerpostcss-pluginconcurrencyhttpsMicrosoftcolourless compilershamintrinsicpackage managerasciioptimistObject.valuesapolloBigInt64ArrayschemeslicevesttoStringTagoffsetArray.prototype.filterio-tsconcatsyntaxerrorcompilerstyleguidetoolsdataViewjsdomcheckchaiECMAScript 2017util.inspectestreeloadingmodulesenvdataviewfigletinternal slotstreams2ECMAScript 2018serializerconfigurableastassertionIteratorargvcommandextendbootstrap cssECMAScript 2019yupstyleSymbol.toStringTagWebSocketsfind-upimmerprivatereduxECMAScript 2020validationspecSettypesavafilterfsponyfillutilitycss variableresolverangeerrorbluebirdaccessibilitydom-testing-librarypreprocessorsettingslengthdirectoryes2016rgbrequestpromisewhichthrottleinstallindicatormoduleflattenserializemomentconstfastthroatformsfile systemelectronmru$.extendStream[[Prototype]]transpilercommanderFunction.prototype.namees2018columnlook-upquerystringvalides-shim APIlazystreamsObject.keyspatchcharactersoperating-systemiteratores-abstractdomnopetypesafearktypeflagsArray.prototype.findLasttrimrm -rfprogresssymlinkECMAScript 5omitnamesmiddlewareauthenticationnameObject.entriesECMAScript 2022debuggergraphql3dconcatMapECMAScript 2015symboltakeRxJSloggingrfc4122consumeairbnbwritetoSortedflatutilitiesFloat64ArrayRxTypedArraybrowserimportgetES2023getintrinsicmovepackage.jsonfast-deep-copyharmonypersistentbusytypedbabelnegativearraylrusignalsvaluesString.prototype.matchAllglobdeepcallbounddayjsdependenciesinputtestersetImmediatespinnersmochafindLastzeroutilwarningjsonduplexfetchdefinePropertyECMAScript 3rmES2018arraysbundlercolorsargparsetyped arraytraverseclassnametrimEndtypedarraysemojirandompromiseskarmayamltc39jsxString.prototype.trimwebchromiummixinspathpreserve-symlinksjwtpolyfilltoobjectaccessorES2022getoptterminalworkerUnderscorereducedatasameValueZerobabel-coreES2015Int16ArrayratelimitparentsequencebyteprettyhttpeslintcensorUint8ClampedArraylooktaskPromiseprunefindLastIndexidleArray.prototype.findLastIndexqueueMicrotasknodebyteLengthawesomesaucea11yregexlinuxcirculartrimLeftbootstrap lessrm -frkeyschemaclass-validatoriterationeventDispatcherweakmapdeepcopypushspringunicodesharedarraybuffercharactergetPrototypeOfbyteOffsettddbannermobilerequiretrimRightObjecthascss nestingansirapidESnexthigher-orderequalpicomatchcorsInt8ArrayObservableinterruptsbrowserslistcryptolistenersvariablesfastclonecommand-linecall-bindcode pointstermdeterministiclinkwatchmkdirpcryptautoprefixerlimitedRFC-6455toArrayES7gdprcore-jsfullworkspace:*groupmonoreporegexpisStyleSheeteventEmitterpyyamlstreamoutputhookformwgetReactiveExtensionsES8ECMAScript 6HyBireducertypescriptcallhardlinksmatchAllsortruntimebrowserlistless csstslibinferenceJSON-Schemamatchesbindgradients csspipejsjson-schema-validationless mixinsfast-copyqseslint-pluginArrayBuffer.prototype.sliceextrascheme-validationdotenvequalityirqES2020Object.fromEntriesinspectfinddifffunctiontypanionpasswordjasmineWeakMapsortedprocess
1.0.0

24 days ago