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.
NonEmptyArray
Some(array)
None
Array to create.
A Some containing the non-empty array, or None if empty.
Some
import { fromArray } from '@pacote/non-empty-array'fromArray([1, 2, 3]) // => Some([1, 2, 3])fromArray([]) // => None Copy
import { fromArray } from '@pacote/non-empty-array'fromArray([1, 2, 3]) // => Some([1, 2, 3])fromArray([]) // => None
Creates a new
NonEmptyArray
from an arbitrary array in a typesafe manner, returningSome(array)
if it is not empty. If it's empty, it returnsNone
.