Creates a new non-empty array from a list of argument elements.
Required first element of the non-empty array.
Remaining elements of the non-empty array.
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 Copy
import { fromElements } from '@pacote/non-empty-array'fromElements(1, 2, 3) // => [1, 2, 3]fromElements() // => TypeScript compilation error
Creates a new non-empty array from a list of argument elements.