()
| 9742 | consumePush(this[kConsume], chunk); |
| 9743 | return this[kReading] ? super.push(chunk) : true; |
| 9744 | } |
| 9745 | return super.push(chunk); |
| 9746 | } |
| 9747 | // https://fetch.spec.whatwg.org/#dom-body-text |
| 9748 | text() { |
| 9749 | return __async(this, null, function* () { |
| 9750 | return consume(this, "text"); |
| 9751 | }); |
| 9752 | } |
| 9753 | // https://fetch.spec.whatwg.org/#dom-body-json |
| 9754 | json() { |
| 9755 | return __async(this, null, function* () { |
| 9756 | return consume(this, "json"); |
nothing calls this directly
no test coverage detected