2 lines
81 B
TypeScript
2 lines
81 B
TypeScript
export const notNullish = (value: any) => value !== null && value !== undefined;
|
export const notNullish = (value: any) => value !== null && value !== undefined;
|