Files
projet_gestion_commande/frontend-admin/node_modules/postcss/lib/comment.js
T
2026-02-07 22:33:02 +01: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