(res: http.ServerResponse)
| 227 | } |
| 228 | |
| 229 | function handleOptions(res: http.ServerResponse): void { |
| 230 | setCorsHeaders(res); |
| 231 | res.writeHead(204); |
| 232 | res.end(); |
| 233 | } |
| 234 | |
| 235 | function handleNotFound(res: http.ServerResponse, message: string): void { |
| 236 | setCorsHeaders(res); |
no test coverage detected
searching dependent graphs…