Node-Red configuration
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

comment.js 203B

12345678910111213
  1. 'use strict'
  2. let Node = require('./node')
  3. class Comment extends Node {
  4. constructor(defaults) {
  5. super(defaults)
  6. this.type = 'comment'
  7. }
  8. }
  9. module.exports = Comment
  10. Comment.default = Comment