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

2.10.19 • Public • Published

Compares two arrays. 📦 😺 🏃 📼 🌔 📜 📰 📘

Similar: compare, isEqual.

This is part of package extra-array.

This is browserified, minified version of @extra-array/compare.
It is exported as global variable array_compare.
CDN: unpkg, jsDelivr.


array.compare(x, y, [fc], [fm]);
// x:  an array
// y:  another array
// fc: compare function (a, b)
// fm: map function (v, i, x)
// → x<y: -1, x=y: 0, x>y: 1
const array = require("extra-array");

var x = [1, 2];
var y = [1, 2, 3];
array.compare(x, y);
// -1

var y = [1, 2];
array.compare(x, y);
// 0

var y = [1, -2];
array.compare(x, y);
// 1

array.compare(x, y, (a, b) => Math.abs(a) - Math.abs(b));
// 0

array.compare(x, y, null, v => Math.abs(v));
// 0


References

Readme

Keywords

Package Sidebar

Install

npm i @extra-array/compare.min

Weekly Downloads

0

Version

2.10.19

License

MIT

Unpacked Size

6.06 kB

Total Files

8

Last publish

Collaborators

  • wolfram77