Files
dealplustech/dealplustech-astro/node_modules/css-tree/lib/syntax/atrule/scope.js
2026-03-02 12:35:14 +07:00

13 lines
241 B
JavaScript

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