import { NonEmptyArray } from './index' export const isNonEmptyArray = (array: T[]): array is NonEmptyArray => { return array.length > 0 }