Files
2025-04-21 16:03:20 +02:00

13 lines
254 B
JavaScript
Vendored

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