Files
juanjo 0fc5392bd2
All checks were successful
DEPLOY_MULTI_BRACH/pipeline/head This commit looks good
fix engram rtk
2026-04-16 18:24:13 +02:00

14 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