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