(options)
| 526 | } |
| 527 | |
| 528 | #canUseWriteFastPath(options) { |
| 529 | return !options?.signal && !this.#isClosed() && !this.#aborted && |
| 530 | this.#broadcast[kCanWrite](); |
| 531 | } |
| 532 | |
| 533 | write(chunk, options) { |
| 534 | // Fast path: no signal, writer open, buffer has space |