(chunks)
| 536 | } |
| 537 | |
| 538 | function writeChunks(chunks) { |
| 539 | let ok = true; |
| 540 | for (let i = 0; i < chunks.length; i++) { |
| 541 | const bytes = toUint8Array(chunks[i]); |
| 542 | totalBytes += TypedArrayPrototypeGetByteLength(bytes); |
| 543 | ok = writable.write(bytes); |
| 544 | } |
| 545 | return ok; |
| 546 | } |
| 547 | |
| 548 | const writer = { |
| 549 | __proto__: null, |
no test coverage detected
searching dependent graphs…