diff options
Diffstat (limited to 'vanilla/node_modules/css-tree/cjs/syntax/atrule/starting-style.cjs')
| -rw-r--r-- | vanilla/node_modules/css-tree/cjs/syntax/atrule/starting-style.cjs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vanilla/node_modules/css-tree/cjs/syntax/atrule/starting-style.cjs b/vanilla/node_modules/css-tree/cjs/syntax/atrule/starting-style.cjs new file mode 100644 index 0000000..8c9814d --- /dev/null +++ b/vanilla/node_modules/css-tree/cjs/syntax/atrule/starting-style.cjs @@ -0,0 +1,12 @@ +'use strict'; + +const startingStyle = { + parse: { + prelude: null, + block(nested = false) { + return this.Block(nested); + } + } +}; + +module.exports = startingStyle; |
