UNPKG

330 BJavaScriptView Raw
1const HTMLElement = require('./HTMLElement');
2const {COMMENT_NODE} = HTMLElement;
3
4module.exports = class HTMLNoComments extends HTMLElement {
5
6 appendChild(node) {
7 super.appendChild(
8 node.nodeType === COMMENT_NODE ?
9 this.ownerDocument.createTextNode(`<!--${node.textContent}-->`) :
10 node
11 );
12 }
13
14};