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

13 lines
198 B
JavaScript

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