Files
Web-Printing-Toolkit/node_modules/postcss/lib/comment.js
TheGreydiamond 7b45a854fe inital commit
2025-08-18 20:02:43 +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