Files
homewebsite/node_modules/css-tree/lib/syntax/atrule/supports.js
2025-10-17 20:17:33 +00:00

13 lines
255 B
JavaScript

export default {
parse: {
prelude() {
return this.createSingleNodeList(
this.Condition('supports')
);
},
block(nested = false) {
return this.Block(nested);
}
}
};