()
| 343 | } |
| 344 | |
| 345 | get stream() { |
| 346 | return Stream.suspend(() => { |
| 347 | responseRegistry.unregister(this.original) |
| 348 | return Stream.ensuring( |
| 349 | this.original.stream, |
| 350 | Effect.sync(() => { |
| 351 | this.controller.abort() |
| 352 | }) |
| 353 | ) |
| 354 | }) |
| 355 | } |
| 356 | |
| 357 | toJSON() { |
| 358 | return this.original.toJSON() |
no test coverage detected