Files
runbin/web/node_modules/postcss/lib/comment.js
lhx-666-cool f6cb277519 add web
2025-04-25 17:03:25 +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