printer-notifications/node_modules/css-tree/cjs/syntax/atrule/media.cjs
2023-11-13 16:10:04 -05:00

17 lines
301 B
JavaScript

'use strict';
const media = {
parse: {
prelude() {
return this.createSingleNodeList(
this.MediaQueryList()
);
},
block(isStyleBlock = false) {
return this.Block(isStyleBlock);
}
}
};
module.exports = media;