(chunks)
| 593 | } |
| 594 | |
| 595 | writevSync(chunks) { |
| 596 | if (!ArrayIsArray(chunks)) { |
| 597 | throw new ERR_INVALID_ARG_TYPE('chunks', 'Array', chunks); |
| 598 | } |
| 599 | const bytes = convertChunks(chunks); |
| 600 | return this.#queue.writeSync(bytes); |
| 601 | } |
| 602 | |
| 603 | end(options) { |
| 604 | const result = this.#queue.end(); |
no test coverage detected