This commit is contained in:
2024-10-29 10:07:53 +08:00
parent dac8a28465
commit aeb28785c7
239 changed files with 59710 additions and 43293 deletions

13
node_modules/postcss/lib/comment.js generated vendored Normal file
View File

@@ -0,0 +1,13 @@
'use strict'
let Node = require('./node')
class Comment extends Node {
constructor(defaults) {
super(defaults)
this.type = 'comment'
}
}
module.exports = Comment
Comment.default = Comment