UNPKG

effect

Version:

The missing standard library for TypeScript, for writing production-grade software.

9 lines (6 loc) 196 B
/** * @since 2.0.0 */ import type { NonEmptyArray } from "../Array.js" /** @internal */ export const isNonEmptyArray = <A>(self: ReadonlyArray<A>): self is NonEmptyArray<A> => self.length > 0