Pacote
    Preparing search index...
    • Creates a new non-empty array from a list of argument elements.

      Type Parameters

      • T

      Parameters

      • first: T

        Required first element of the non-empty array.

      • ...rest: readonly T[]

        Remaining elements of the non-empty array.

      Returns NonEmptyArray<T>

      Non-empty array with the provided arguments in order.

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

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