* Set the HTTP Response Data as string * * @param data
(content: string)
| 52 | * @param data |
| 53 | */ |
| 54 | send(content: string) { |
| 55 | this.response.write(content); |
| 56 | this.response.end(); |
| 57 | this.response.isResponded = true; |
| 58 | } |
| 59 | |
| 60 | /** |
| 61 | * Set the no-content to the HTTP Response with 204 status code. |
no outgoing calls
no test coverage detected