()
| 528 | } |
| 529 | |
| 530 | #emitDrain() { |
| 531 | const hasListeners = this.listenerCount('drain') > 0; |
| 532 | if (!hasListeners) return; |
| 533 | this.#asyncDrainScheduled = false; |
| 534 | this.emit('drain'); |
| 535 | } |
| 536 | |
| 537 | #actualClose() { |
| 538 | if (this.#fd === -1) { |
no test coverage detected