Files
base-front-project/node_modules/.pnpm/postcss@8.5.6/node_modules/postcss/lib/comment.js
2026-04-13 08:21:07 +00: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