• This method is like _.uniq except that it's designed and optimized for sorted arrays.

    Type Parameters

    • T

    Parameters

    • array: undefined | null | List<T>

      The array to inspect.

    Returns T[]

    Returns the new duplicate free array.

    Example

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

Generated using TypeDoc