(res: http.ServerResponse, body: Record<string, unknown>)
| 209 | } |
| 210 | |
| 211 | function sendJson(res: http.ServerResponse, body: Record<string, unknown>): void { |
| 212 | res.statusCode = 200; |
| 213 | res.setHeader('content-type', 'application/json'); |
| 214 | res.end(JSON.stringify(body)); |
| 215 | } |
| 216 | |
| 217 | function sendUploadedArtifactResponse( |
| 218 | res: http.ServerResponse, |
no outgoing calls
no test coverage detected
searching dependent graphs…