export function isNotEmpty(value: TValue | null | undefined): value is TValue { return value !== null && value !== undefined }