mirror of
https://github.com/notherealmarco/WASAPhoto.git
synced 2025-03-14 14:16:15 +01:00
13 lines
203 B
JavaScript
13 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
|