* Decode response as text, while automatically detecting the encoding and * trying to decode to UTF-8 (non-spec api) * * @return Promise
()
| 6192 | * @return Promise |
| 6193 | */ |
| 6194 | textConverted() { |
| 6195 | var _this3 = this; |
| 6196 | return consumeBody.call(this).then(function(buffer) { |
| 6197 | return convertBody(buffer, _this3.headers); |
| 6198 | }); |
| 6199 | } |
| 6200 | }; |
| 6201 | Object.defineProperties(Body.prototype, { |
| 6202 | body: { enumerable: true }, |
nothing calls this directly
no test coverage detected
searching dependent graphs…