v-wordpress-plugin-updater/node_modules/css-tree/cjs/syntax/atrule/scope.cjs
2025-08-14 00:05:37 -04:00

16 lines
280 B
JavaScript

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