for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
const nonNullish = <T>(value: T): value is NonNullable<T> => value !== null && value !== undefined;
export const Objects = {
nonNullish,
};