(socket: Duplex, statusCode: number, message: string)
| 409 | Object.setPrototypeOf(PreviewEventSource, NativeEventSource); |
| 410 | window.EventSource = PreviewEventSource; |
| 411 | } |
| 412 | })();</script>`; |
| 413 | |
| 414 | const head = /<head(?:\s[^>]*)?>/i; |
| 415 | if (head.test(body)) return body.replace(head, (match) => `${match}${script}`); |
| 416 | return `${script}${body}`; |
| 417 | } |
no test coverage detected