UNPKG

postcss

Version:

Tool for transforming styles with JS plugins

14 lines (10 loc) 203 B
'use strict' let Node = require('./node') class Comment extends Node { constructor(defaults) { super(defaults) this.type = 'comment' } } module.exports = Comment Comment.default = Comment