IOweb/node_modules/css-tree/lib/syntax/atrule/supports.js
2026-07-03 15:07:38 -05:00

12 lines
255 B
JavaScript

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