export type NonEmptyArray = [T, ...T[]]; export function hasValue(value: T): value is NonNullable { return value !== undefined && value !== null; }