()
| 56108 | push(chunk) { |
| 56109 | if (this[kConsume] && chunk !== null && this.readableLength === 0) { |
| 56110 | consumePush(this[kConsume], chunk); |
| 56111 | return this[kReading] ? super.push(chunk) : true; |
| 56112 | } |
| 56113 | return super.push(chunk); |
| 56114 | } |
| 56115 | // https://fetch.spec.whatwg.org/#dom-body-text |