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

2.10.19 • Public • Published

Removes duplicate values. 📦 😺 🏃 📼 🌔 📜 📰 📘

Alternatives: unique, isUnique.

This is part of package extra-array.

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


array.unique(x, [fc], [fm]);
// x:  an array
// fc: compare function (a, b)
// fm: map function (v, i, x)

⏱️ Compare function => O(n²).

const array = require("extra-array");

var x = [1, 2, 3, 4, 2, 3];
array.unique(x);
// [ 1, 2, 3, 4 ]

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

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


References

Readme

Keywords

Package Sidebar

Install

npm i @extra-array/unique.min

Weekly Downloads

0

Version

2.10.19

License

MIT

Unpacked Size

6.65 kB

Total Files

8

Last publish

Collaborators

  • wolfram77