Pacote
    Preparing search index...

    Function intersect

    • Returns the intersection between two arrays.

      Type Parameters

      • T

        The type of the elements in the arrays.

      Parameters

      • left: readonly T[]

        The first array.

      • right: readonly T[]

        The second array.

      Returns T[]

      The unique elements present in both arrays.

      import { intersect } from '@pacote/array'

      intersect(['a', 'b', 'c'], ['b', 'c', 'd']) // => ['b', 'c']