summaryrefslogblamecommitdiff
path: root/node_modules/postcss/lib/comment.js
blob: c56650645caed3bb47cf7a39d18696ec47140ca3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                            
'use strict'

let Node = require('./node')

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

module.exports = Comment
Comment.default = Comment