bpms_site/.svn/pristine/9a/9a76797149ab7bcd7730fabf8cb805ba4df496d6.svn-base
2025-11-02 16:38:49 +03:30

14 lines
203 B
Plaintext

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