helix/node_modules/postcss/lib/comment.js
Abhijit Bhatnagar 153a4e9fd7 Initial commit
2025-08-01 08:00:35 +05:30

13 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