export const noop = () => { }; export const isBrowser = typeof window !== 'undefined' && typeof navigator !== 'undefined' && typeof document !== 'undefined'; export const isStrictEqual = (previous, next) => previous === next; export const truthyAndArrayPredicate = (conditions) => conditions.every(Boolean); export const truthyOrArrayPredicate = (conditions) => conditions.some(Boolean);