(res: http.ServerResponse, data: unknown, statusCode = 200)
| 4985 | } |
| 4986 | |
| 4987 | private jsonResponse(res: http.ServerResponse, data: unknown, statusCode = 200): void { |
| 4988 | res.writeHead(statusCode, { "Content-Type": "application/json; charset=utf-8" }); |
| 4989 | res.end(JSON.stringify(data)); |
| 4990 | } |
| 4991 | } |
no test coverage detected