Function uniqueItems

  • Returns an array of unique items by removing duplicates from the given array.

    This function utilizes the Set object to remove duplicate values, ensuring that only unique items remain in the returned array. The order of items in the resulting array is preserved as in the input.

    Returns

    A new array containing only the unique items from the input array.

    Type Parameters

    • T

    Parameters

    • items: T[]

      The array from which duplicates will be removed.

    Returns T[]

Generated using TypeDoc