aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/css-tree/cjs/syntax/atrule/nest.cjs
diff options
context:
space:
mode:
Diffstat (limited to 'vanilla/node_modules/css-tree/cjs/syntax/atrule/nest.cjs')
-rw-r--r--vanilla/node_modules/css-tree/cjs/syntax/atrule/nest.cjs16
1 files changed, 0 insertions, 16 deletions
diff --git a/vanilla/node_modules/css-tree/cjs/syntax/atrule/nest.cjs b/vanilla/node_modules/css-tree/cjs/syntax/atrule/nest.cjs
deleted file mode 100644
index 5cd6672..0000000
--- a/vanilla/node_modules/css-tree/cjs/syntax/atrule/nest.cjs
+++ /dev/null
@@ -1,16 +0,0 @@
-'use strict';
-
-const nest = {
- parse: {
- prelude() {
- return this.createSingleNodeList(
- this.SelectorList()
- );
- },
- block() {
- return this.Block(true);
- }
- }
-};
-
-module.exports = nest;