CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
comment.js14 linesDownload Raw Back to lib
1'use strict'2 3let Node = require('./node')4 5class Comment extends Node {6  constructor(defaults) {7    super(defaults)8    this.type = 'comment'9  }10}11 12module.exports = Comment13Comment.default = Comment14