Son CV dans un terminal web en Javascript! https://terminal-cv.gregandev.fr
 
 
 
 
terminal-cv/node_modules/postcss/lib/comment.js

13 lines
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