rittenhop-ghost/versions/5.94.2/node_modules/css-tree/lib/syntax/atrule/page.js

13 lines
232 B
JavaScript
Raw Normal View History

export default {
parse: {
prelude() {
return this.createSingleNodeList(
this.SelectorList()
);
},
block() {
return this.Block(true);
}
}
};