function isNotEmptyimport { isNotEmpty } from "https://dotland.deno.dev/x/rambda@9.4.1/mod.ts"; isNotEmpty<T>(value: T[]): value is NonEmptyArray<T>isNotEmpty<T>(value: readonly T[]): value is ReadonlyNonEmptyArray<T>isNotEmpty(value: any): booleanType ParametersTParametersvalue: T[]Returnsvalue is NonEmptyArray<T>Type ParametersTParametersvalue: readonly T[]Returnsvalue is ReadonlyNonEmptyArray<T>Parametersvalue: anyReturnsboolean