/** * @deprecated use common */ export const isNonNullable = (o: T | undefined | null): o is NonNullable => o !== undefined && o !== null; export const isNullish = (o: T | undefined | null): o is undefined | null => o === undefined || o === null;