()
| 208 | } |
| 209 | |
| 210 | async text(): Promise<string> { |
| 211 | return typeof this.xhr.response === "string" |
| 212 | ? this.xhr.response |
| 213 | : this.xhr.responseText; |
| 214 | } |
| 215 | |
| 216 | async json(): Promise<unknown> { |
| 217 | return JSON.parse(await this.text()); |
no outgoing calls
no test coverage detected