Files
vat-api.eu/node_modules/css-tree/lib/syntax/atrule/layer.js
2026-02-13 22:02:30 +01:00

13 lines
230 B
JavaScript

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