(controller)
| 48036 | iterator2 = iterable[Symbol.asyncIterator](); |
| 48037 | }, |
| 48038 | async pull(controller) { |
| 48039 | const { done, value } = await iterator2.next(); |
| 48040 | if (done) { |
| 48041 | queueMicrotask(() => { |
| 48042 | controller.close(); |
| 48043 | }); |
| 48044 | } else { |
| 48045 | const buf = Buffer.isBuffer(value) ? value : Buffer.from(value); |
| 48046 | controller.enqueue(new Uint8Array(buf)); |
| 48047 | } |
| 48048 | return controller.desiredSize > 0; |
| 48049 | }, |
| 48050 | async cancel(reason) { |
| 48051 | await iterator2.return(); |
| 48052 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…