/** * @since 2.0.0 */ import type { NonEmptyArray } from "../Array.js" /** @internal */ export const isNonEmptyArray = (self: ReadonlyArray): self is NonEmptyArray => self.length > 0