Files
sta/src/utils/isNil.ts
T

3 lines
128 B
TypeScript

export const isNil = (value: unknown | null | undefined): value is null | undefined =>
value === null || value === undefined;