(response: ServerResponse)
| 3016 | } |
| 3017 | |
| 3018 | function finishSse(response: ServerResponse): void { |
| 3019 | if (response.writableEnded || response.destroyed) { |
| 3020 | return; |
| 3021 | } |
| 3022 | response.end('data: [DONE]\n\n'); |
| 3023 | } |
| 3024 | |
| 3025 | function writeJson(response: ServerResponse, status: number, body: JsonRecord): void { |
| 3026 | response.writeHead(status, { |
no outgoing calls
no test coverage detected