Files
antrean-anjungan/examples/nuxt3-websocket-client/node_modules/css-tree/cjs/syntax/atrule/layer.cjs
T
2025-09-18 19:01:22 +07: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;