UNPKG

352 BJavaScriptView Raw
1const Node = require('./Node');
2const CharacterData = require('./CharacterData');
3
4// interface Comment // https://dom.spec.whatwg.org/#comment
5module.exports = class Comment extends CharacterData {
6 constructor(ownerDocument, comment) {
7 super(ownerDocument, comment);
8 this.nodeType = Node.COMMENT_NODE;
9 this.nodeName = '#comment';
10 }
11};