UNPKG

wix-style-react

Version:
17 lines 528 B
export const register = () => { if (window && !window.matchMedia) { window.matchMedia = function () { return { matches: false, addListener() { }, removeListener() { }, }; }; } global.matchMedia = global.matchMedia || window.matchMedia; }; const isTestEnv = process.env.NODE_ENV === 'test'; if (isTestEnv && typeof window !== 'undefined' && !window.matchMedia) { register(); } //# sourceMappingURL=match-media-register.js.map