site/node_modules/css-tree/cjs/syntax/atrule/page.cjs

17 lines
269 B
JavaScript
Raw Normal View History

2024-10-14 06:09:33 +00:00
'use strict';
const page = {
parse: {
prelude() {
return this.createSingleNodeList(
this.SelectorList()
);
},
block() {
return this.Block(true);
}
}
};
module.exports = page;