Files
chinese-family-tree-2/node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/comment.js
T
freedakgmail 43c8389705 0.0.0.1
2025-11-22 19:52:55 +08:00

14 lines
203 B
JavaScript

'use strict'
let Node = require('./node')
class Comment extends Node {
constructor(defaults) {
super(defaults)
this.type = 'comment'
}
}
module.exports = Comment
Comment.default = Comment