@extra-array/sort
TypeScript icon, indicating that this package has built-in type declarations

2.10.19 • Public • Published

Arranges values in an order. 📦 😺 🏃 📼 🌔 📜 📰 📘

Alternatives: sort, sort$.
Similar: sort, merge.

This is part of package extra-array.


array.sort(x, [fc], [fm]);
// x:  an array
// fc: compare function (a, b)
// fm: map function (v, i, x)
const array = require("extra-array");

var x = [-2, -3, 1, 4];
array.sort(x);
// [ -3, -2, 1, 4 ] (compares numbers)

array.sort(x, (a, b) => Math.abs(a) - Math.abs(b));
// [ 1, -2, -3, 4 ]

array.sort(x, null, v => Math.abs(v));
// [ 1, -2, -3, 4 ]


References

Readme

Keywords

Package Sidebar

Install

npm i @extra-array/sort

Weekly Downloads

3

Version

2.10.19

License

MIT

Unpacked Size

5.17 kB

Total Files

8

Last publish

Collaborators

  • wolfram77