FLUJOS/BACK_BACK/node_modules/css-tree/lib/syntax/atrule/page.js
2025-11-07 00:06:12 +01:00

12 lines
254 B
JavaScript
Executable file

module.exports = {
parse: {
prelude: function() {
return this.createSingleNodeList(
this.SelectorList()
);
},
block: function() {
return this.Block(true);
}
}
};