wix-style-react
Version:
wix-style-react
17 lines • 528 B
JavaScript
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