IOweb/node_modules/css-tree/cjs/syntax/atrule/starting-style.cjs
2026-07-03 15:07:38 -05:00

12 lines
198 B
JavaScript

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