Files
blowfish/node_modules/postcss/lib/comment.js
Nuno Coração 5fb4bd8083 config redirect
2023-01-29 22:30:24 +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