Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

14 wiersze
203 B

  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