Files
skills-here-run-place/node_modules/css-tree/cjs/syntax/atrule/media.cjs
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

17 lines
289 B
JavaScript

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