Files
oneclickvirt.github.io/node_modules/postcss/lib/comment.js
spiritlhl 6f5966067d Update
2023-06-20 00:59: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