(response: ServerResponse, data: any)
| 81 | } |
| 82 | |
| 83 | function sendJSON(response: ServerResponse, data: any) { |
| 84 | response.setHeader('Content-Type', contentTypeMap.json); |
| 85 | response.write(JSON.stringify(data)); |
| 86 | response.end(); |
| 87 | } |
| 88 | |
| 89 | function sendConfig(response: ServerResponse) { |
| 90 | sendJSON(response, config); |
no outgoing calls
no test coverage detected