export const isNullOrUndefined = (object?: unknown): boolean => object === null || object === undefined;