Files
Tiber365/node_modules/css-tree/cjs/syntax/atrule/layer.cjs
2025-07-24 18:46:24 +02:00

17 lines
269 B
JavaScript

'use strict';
const layer = {
parse: {
prelude() {
return this.createSingleNodeList(
this.LayerList()
);
},
block() {
return this.Block(false);
}
}
};
module.exports = layer;