Pacote
    Preparing search index...

    Function difference

    • Returns a tuple with the difference between two arrays.

      Type Parameters

      • T

        The type of the elements in the arrays.

      Parameters

      • left: readonly T[]

        Left array.

      • right: readonly T[]

        Right array.

      Returns [T[], T[]]

      Tuple with two arrays: one with elements present in the left array but not in the right, and the other with elements present in the right array but not in the left.

      import { chunked } from '@pacote/array'

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