UNPKG

wix-style-react

Version:
20 lines (16 loc) 451 B
export const register = () => { if (window && !window.matchMedia) { window.matchMedia = function () { return { matches: false, addListener: function () {}, removeListener: function () {}, }; }; } global.matchMedia = global.matchMedia || window.matchMedia; }; const isTestEnv = process.env.NODE_ENV === 'test'; if (isTestEnv && typeof window !== 'undefined' && !window.matchMedia) { register(); }