Creates a duplicate-free version of an array, using SameValueZero for equality comparisons, in which only the first occurrence of each element is kept. The order of result values is determined by the order they occur in the array.
SameValueZero
The array to inspect.
Returns the new duplicate free array.
0.1.0
uniqBy, uniqWith
uniq([2, 1, 2])// => [2, 1] Copy
uniq([2, 1, 2])// => [2, 1]
Creates a duplicate-free version of an array, using
SameValueZero
for equality comparisons, in which only the first occurrence of each element is kept. The order of result values is determined by the order they occur in the array.