# array.prototype.tosorted

> An ESnext spec-compliant `Array.prototype.toSorted` shim/polyfill/replacement that works as far down as ES3.

Latest version **1.1.4** (published 2024-06-03) · MIT license · 0 weekly downloads

## Install

```sh
npm install array.prototype.tosorted
pnpm add array.prototype.tosorted
yarn add array.prototype.tosorted
bun add array.prototype.tosorted
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.1.4 |
| Published | 2024-06-03 |
| First published | 2022-03-31 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Node | >= 0.4 |
| Dependencies | 5 |
| Unpacked size | 20.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 10 |
| Author | Jordan Harband |
| Maintainers | ljharb |
| Keywords | javascript, ecmascript, shim, polyfill, es-shim API, array, sort, sorted, toSorted |

## Links

- npm: https://www.npmjs.com/package/array.prototype.tosorted
- Repository: https://github.com/es-shims/Array.prototype.toSorted
- Homepage: https://github.com/es-shims/Array.prototype.toSorted#readme
- Issues: https://github.com/es-shims/Array.prototype.toSorted/issues
- npm.io page: https://npm.io/package/array.prototype.tosorted

## Dependencies (5)

- [call-bind](https://npm.io/package/call-bind.md) ^1.0.7
- [es-errors](https://npm.io/package/es-errors.md) ^1.3.0
- [es-abstract](https://npm.io/package/es-abstract.md) ^1.23.3
- [define-properties](https://npm.io/package/define-properties.md) ^1.2.1
- [es-shim-unscopables](https://npm.io/package/es-shim-unscopables.md) ^1.0.2

## Recent versions

- 1.1.4 (latest) — 2024-06-03
- 1.1.3 — 2024-02-05
- 1.1.2 — 2023-09-07
- 1.1.1 — 2022-11-04
- 1.1.0 — 2022-08-15
- 1.0.0 — 2022-03-31

## README

# array.prototype.tosorted <sup>[![Version Badge][npm-version-svg]][package-url]</sup>

[![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]

[![npm badge][npm-badge-png]][package-url]

An ESnext spec-compliant `Array.prototype.toSorted` shim/polyfill/replacement that works as far down as ES3.

This package implements the [es-shim API](https://github.com/es-shims/api) interface. It works in an ES3-supported environment and complies with the proposed [spec](https://tc39.es/proposal-change-array-by-copy/#sec-array.prototype.toSorted).

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

```sh
npm install --save array.prototype.tosorted
```

## Usage/Examples

```js
var toSorted = require('array.prototype.tosorted');
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]);
```

```js
var toSorted = require('array.prototype.tosorted');
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));
```

```js
var toSorted = require('array.prototype.tosorted');
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`

[package-url]: https://npmjs.org/package/array.prototype.tosorted
[npm-version-svg]: https://versionbadg.es/es-shims/Array.prototype.toSorted.svg
[deps-svg]: https://david-dm.org/es-shims/Array.prototype.toSorted.svg
[deps-url]: https://david-dm.org/es-shims/Array.prototype.toSorted
[dev-deps-svg]: https://david-dm.org/es-shims/Array.prototype.toSorted/dev-status.svg
[dev-deps-url]: https://david-dm.org/es-shims/Array.prototype.toSorted#info=devDependencies
[npm-badge-png]: https://nodei.co/npm/array.prototype.tosorted.png?downloads=true&stars=true
[license-image]: https://img.shields.io/npm/l/array.prototype.tosorted.svg
[license-url]: LICENSE
[downloads-image]: https://img.shields.io/npm/dm/array.prototype.tosorted.svg
[downloads-url]: https://npm-stat.com/charts.html?package=array.prototype.tosorted

---
_Source: https://npm.io/package/array.prototype.tosorted · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
