Files
Handwerksfreund_Frontend/node_modules/postcss/lib/comment.js
T
MarcWieland 8b613ec0bc Init
2026-07-26 23:57:23 +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