export type Truthy = T extends false | "" | 0 | null | undefined ? never : T; // from lodash export const truthy = (value: T): value is Truthy => !!value;