aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/css-tree/lib/syntax/atrule/supports.js
diff options
context:
space:
mode:
Diffstat (limited to 'vanilla/node_modules/css-tree/lib/syntax/atrule/supports.js')
-rw-r--r--vanilla/node_modules/css-tree/lib/syntax/atrule/supports.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/vanilla/node_modules/css-tree/lib/syntax/atrule/supports.js b/vanilla/node_modules/css-tree/lib/syntax/atrule/supports.js
deleted file mode 100644
index bdfffce..0000000
--- a/vanilla/node_modules/css-tree/lib/syntax/atrule/supports.js
+++ /dev/null
@@ -1,12 +0,0 @@
-export default {
- parse: {
- prelude() {
- return this.createSingleNodeList(
- this.Condition('supports')
- );
- },
- block(nested = false) {
- return this.Block(nested);
- }
- }
-};