* Read and decode the reponse body as utf8 encoded text
()
| 303 | * Read and decode the reponse body as utf8 encoded text |
| 304 | */ |
| 305 | async text(): Promise<string> { |
| 306 | let buf = await this.readAll(); |
| 307 | return decodeText(buf); |
| 308 | } |
| 309 | } |
| 310 | } |
no test coverage detected