npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@f1stnpm2/ipsa-repellendus-expedita

v1.0.0

Published

[![dependency status][deps-svg]][deps-url] [![dev dependency status][dev-deps-svg]][dev-deps-url] [![License][license-image]][license-url] [![Downloads][downloads-image]][downloads-url]

Downloads

3

Maintainers

sinhatminh11sinhatminh11

Keywords

collection.es6descriptionnodejsshellsanitizationl10nponyfillfastifybytesetcreateclijsonschemaoptimizerECMAScript 20233dwatchstylinggetPrototypeOfincludesreduxutilnopetddhooksformauthnegative zerobcryptarraysstylestapObject.fromEntriescallboundbabel-coreprefixstreams2fppropertieswaitReactiveExtensionsarraybufferfind-uphardlinksmobilesetterwhatwgstringargparseimmerWebSocketbddbatchgradients css3i18nargvwrapwhichfetchWeakMapnamesprettytrimEndstringifiershrinkwrapArray.prototype.findLastvarspeedECMAScript 2020css-in-jsfindupuuidutilssameValueZerocoercibleyamltimeES2022recursivenameArraymake dirkarmafiglettypescriptreusereact-testing-libraryasyncmomentlook-upES2019inferenceinstallsequenceupsymbolfunctionspackageURLSearchParamsWebSocketsqueryString.prototype.trimFunction.prototype.namesymlinkpicomatchfixed-widthweaksetECMAScript 2015writablemapexecutablerangeerrorTypedArrayforEachfastcopyartStreamsassertsObjecttypeapollo256compile lessStreamoptimistsyntaxerrorconcurrencyes2017syntaxschemamoduleredactequalcss lessformattinghasxhrargumentES3shebanglastUint8ArraywidthdependenciesworkerdragRxJSsymbolsloadinggetintrinsicrgbdeep-copysortedvalueES2018CSSObject.valuesindicatorthroatopenerpluginECMAScript 2018file systemlookthrottleArray.prototype.flatMapTypeBoxpureArray.prototype.containsurlscheckletmixinsbootstrap lesswordbreakcall-bindoutputloglaunchJSONtelephoneflatbabelES2020gradients csssharedbyteLengthhigher-orderreact animationecmascriptprototypeECMAScript 7idleRFC-6455eslintavaexitinvariantsomeArray.prototype.includesestreeReactiveXconcatconstexpressionviewiteratorregularrfc4122statuszodoperating-systemdatelazyregular expressionisConcatSpreadablebrowserslistremoveString.prototype.matchAllio-tsspawnequalityES2015walkingwatchFilepostcssArray.prototype.flattenprogressstartutilitiesInt32ArrayObject.entriessigtermfilemacosshamjsdifftapeBigUint64ArrayUint32ArraycollectiondayjskeyvesttextdropasciiirqReflect.getPrototypeOfeslint-pluginflagexpressfast-clonecorsappdebuggerwritetypeerrores-shim APIPushinstallerfullECMAScript 2022ECMAScript 2021package managerlrujsonfantasy-landstylesheetenderform-validationhandlersdefinerateInt16ArrayObservablesstdlibsymlinksprotoFloat64ArraypersistentconnectcompilertacitcmdECMAScript 5serializereact poseimportObject.keysflagsdescriptorsmkdirpPromiseclientbundlerhookformjwtassertCSSStyleDeclarationapibindtestdeterministicquerystringreduceWeakSetpreserve-symlinksassertionuninstalleventEmitterESjestpushsharedarraybuffernodejavascriptcsszerospinnermkdirsunicodewordwraptesterchildInt8ArrayintrinsicievalidatetoSortedstyleguidewatcheres5queueArray.prototype.flatjapaneseextensionargstostringtagtranspileregular expressionspropgraphql6to5configfunctionalthreeqsimmutableexeredux-toolkitprunetrimStartanimationArray.prototype.filtercss nestingtoArrayArrayBuffer.prototype.slicepropertytypedarraylibphonenumberSymbolspinners

Readme

@f1stnpm2/ipsa-repellendus-expedita 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 @f1stnpm2/ipsa-repellendus-expedita

Usage/Examples

var toSorted = require('@f1stnpm2/ipsa-repellendus-expedita');
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('@f1stnpm2/ipsa-repellendus-expedita');
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('@f1stnpm2/ipsa-repellendus-expedita');
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