(status?: number)
| 18 | constructor(private response: Parameters<RequestListener>[1]) {} |
| 19 | |
| 20 | empty(status?: number) { |
| 21 | return this.response.writeHead(status ?? 200).end(); |
| 22 | } |
| 23 | |
| 24 | text(text: string, status?: number, contentType?: string) { |
| 25 | return this.response |
no outgoing calls
no test coverage detected