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]