JSPM

@extra-array/sort-update.min

2.10.19
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q100674F
  • License MIT

Arranges values in an order.

Package Exports

  • @extra-array/sort-update.min

Readme

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

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

This is part of package extra-array.

This is browserified, minified version of @extra-array/sort-update.
It is exported as global variable array_sort$.
CDN: unpkg, jsDelivr.


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

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

x;
// [ -3, -2, 1, 4 ]

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

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


References