4.17.11
3.10.1
2.4.2
1.3.1

_.uniq(array)

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.

Since

0.1.0

Arguments

argument
array
type
Array
description
The array to inspect.

Returns

(array)

Example

_.uniq([2, 1, 2]);
// => [2, 1]
_.uniq([2, 1, 2]);
// => [2, 1]