This method is like _.uniq except that it's designed and optimized for sorted arrays.
_.uniq
The array to inspect.
Returns the new duplicate free array.
_.sortedUniq([1, 1, 2]);// => [1, 2] Copy
_.sortedUniq([1, 1, 2]);// => [1, 2]
This method is like
_.uniq
except that it's designed and optimized for sorted arrays.