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

13 lines
232 B
JavaScript
Raw Normal View History

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