elearning/Frontend-Learner/node_modules/css-tree/lib/syntax/atrule/scope.js

13 lines
241 B
JavaScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
export default {
parse: {
prelude() {
return this.createSingleNodeList(
this.Scope()
);
},
block(nested = false) {
return this.Block(nested);
}
}
};