Dotawo/node_modules/postcss/lib/comment.js

13 lines
178 B
JavaScript
Raw Normal View History

2020-10-28 23:37:25 +01:00
'use strict'
let Node = require('./node')
class Comment extends Node {
constructor (defaults) {
super(defaults)
this.type = 'comment'
}
}
module.exports = Comment