• File: comment.js
  • Full Path: /home/awtadalkhimacom/public_html/services/node_modules/postcss/lib/comment.js
  • Date Modified: 10/30/2025 4:29 AM
  • File size: 203 bytes
  • MIME-type: text/plain
  • Charset: utf-8
'use strict'

let Node = require('./node')

class Comment extends Node {
  constructor(defaults) {
    super(defaults)
    this.type = 'comment'
  }
}

module.exports = Comment
Comment.default = Comment