3 lines
128 B
TypeScript
3 lines
128 B
TypeScript
export const isNil = (value: unknown | null | undefined): value is null | undefined =>
|
|
value === null || value === undefined;
|