()
| 131 | } |
| 132 | |
| 133 | async dispose() { |
| 134 | this.#writableClosed = true; |
| 135 | this.#closed.resolve(); |
| 136 | |
| 137 | for (const controller of this.#readableControllers) { |
| 138 | tryClose(controller); |
| 139 | } |
| 140 | |
| 141 | await this.#options.dispose?.(); |
| 142 | } |
| 143 | } |
no test coverage detected