(html: string)
| 68 | }; |
| 69 | |
| 70 | const documentWrite = (html: string): void => { |
| 71 | if (!this.parser.stopped) { |
| 72 | this.pendingHtmlInsertions.push(html); |
| 73 | } |
| 74 | }; |
| 75 | |
| 76 | const scriptHandler = (scriptElement: T['element']): void => { |
| 77 | if (this.listenerCount('script') > 0) { |