Files
LearnNode/node-course/node_modules/@eslint/css-tree/cjs/syntax/atrule/layer.cjs
T
2026-08-06 12:00:39 +10:00

17 lines
341 B
JavaScript

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