Get rid of duplicates in array
Example:
const a = [1, 1, 1, 2, 2, 3]; const b = rmArrDups(a); console.log(b); // [1, 2, 3];
Generated using TypeDoc
Get rid of duplicates in array
Example:
const a = [1, 1, 1, 2, 2, 3]; const b = rmArrDups(a); console.log(b); // [1, 2, 3];