(opts, handler)
| 10606 | statusCode, |
| 10607 | headers, |
| 10608 | opaque, |
| 10609 | body: this.res, |
| 10610 | context |
| 10611 | }); |
| 10612 | } catch (err) { |
| 10613 | this.res.on("error", util.nop); |
| 10614 | throw err; |
| 10615 | } |
| 10616 | if (!body || typeof body.on !== "function") { |
| 10617 | throw new InvalidReturnValueError("expected Readable"); |
| 10618 | } |
| 10619 | body.on("data", (chunk) => { |
no test coverage detected