choerodon-ui
Version:
An enterprise-class UI design language and React-based implementation
20 lines (16 loc) • 494 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.matchMediaPolifill = void 0;
var matchMediaPolifill = function matchMediaPolifill(mediaQuery) {
// console.warn('`matchMedia` is not supported!');
return {
media: mediaQuery,
matches: false,
addListener: function addListener() {},
removeListener: function removeListener() {}
};
};
exports.matchMediaPolifill = matchMediaPolifill;
//# sourceMappingURL=mediaQueryListPolyfill.js.map
;