wishthis/node_modules/postcss/lib/comment.js

14 lines
203 B
JavaScript
Raw Normal View History

2023-08-17 09:47:40 +00:00
'use strict'
2022-01-21 08:28:41 +00:00
2023-08-17 09:47:40 +00:00
let Node = require('./node')
2022-01-21 08:28:41 +00:00
2023-08-17 09:47:40 +00:00
class Comment extends Node {
constructor(defaults) {
super(defaults)
this.type = 'comment'
2022-01-21 08:28:41 +00:00
}
2023-08-17 09:47:40 +00:00
}
2022-01-21 08:28:41 +00:00
2023-08-17 09:47:40 +00:00
module.exports = Comment
Comment.default = Comment