aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/postcss/lib/comment.js
diff options
context:
space:
mode:
Diffstat (limited to 'vanilla/node_modules/postcss/lib/comment.js')
-rw-r--r--vanilla/node_modules/postcss/lib/comment.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/vanilla/node_modules/postcss/lib/comment.js b/vanilla/node_modules/postcss/lib/comment.js
deleted file mode 100644
index c566506..0000000
--- a/vanilla/node_modules/postcss/lib/comment.js
+++ /dev/null
@@ -1,13 +0,0 @@
-'use strict'
-
-let Node = require('./node')
-
-class Comment extends Node {
- constructor(defaults) {
- super(defaults)
- this.type = 'comment'
- }
-}
-
-module.exports = Comment
-Comment.default = Comment