mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 02:09:30 +08:00
13 lines
203 B
Text
13 lines
203 B
Text
'use strict'
|
|
|
|
let Node = require('./node')
|
|
|
|
class Comment extends Node {
|
|
constructor(defaults) {
|
|
super(defaults)
|
|
this.type = 'comment'
|
|
}
|
|
}
|
|
|
|
module.exports = Comment
|
|
Comment.default = Comment
|