IOweb/node_modules/css-tree/lib/syntax/atrule/layer.js
2026-07-03 15:07:38 -05:00

12 lines
230 B
JavaScript

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