Pacote
    Preparing search index...
    • Joins two Arrays or NonEmptyArrays in order, returning a new NonEmptyArray. At least one of the provided arrays must be non-empty.

      Type Parameters

      • T

      Parameters

      • before: readonly T[]

        First array to concatenate.

      • after: NonEmptyArray<T>

        Second array to concatenate.

      Returns NonEmptyArray<T>

      Combined non-empty array.

      import { concat } from '@pacote/non-empty-array'

      concat([1, 2], [3, 4]) // => [1, 2, 3, 4]
      concat([1], []) // => [1]
      concat([], []) // => TypeScript compilation error
    • Joins two Arrays or NonEmptyArrays in order, returning a new NonEmptyArray. At least one of the provided arrays must be non-empty.

      Type Parameters

      • T

      Parameters

      • before: NonEmptyArray<T>

        First array to concatenate.

      • after: readonly T[]

        Second array to concatenate.

      Returns NonEmptyArray<T>

      Combined non-empty array.

      import { concat } from '@pacote/non-empty-array'

      concat([1, 2], [3, 4]) // => [1, 2, 3, 4]
      concat([1], []) // => [1]
      concat([], []) // => TypeScript compilation error