3 lines
159 B
TypeScript
3 lines
159 B
TypeScript
export const notNullish = (value: any) => value !== null && value !== undefined;
|
|
export const nullish = (value: any) => value === null || value === undefined;
|