www_hero/node_modules/postcss/lib/comment.js
sasha-astiadi 324d5960af hero_web
2024-05-03 06:39:20 +02: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