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