Pacote
    Preparing search index...
    • Creates a new NonEmptyArray from an arbitrary array in a typesafe manner, returning Some(array) if it is not empty. If it's empty, it returns None.

      Type Parameters

      • T

      Parameters

      • array: readonly T[]

        Array to create.

      Returns Option<NonEmptyArray<T>>

      A Some containing the non-empty array, or None if empty.

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

      fromArray([1, 2, 3]) // => Some([1, 2, 3])
      fromArray([]) // => None