Files
sta/src/utils/isNil.ts
T

3 lines
128 B
TypeScript
Raw Normal View History

2026-05-14 22:41:11 +02:00
export const isNil = (value: unknown | null | undefined): value is null | undefined =>
value === null || value === undefined;