()
| 351 | latch.openUnsafe() |
| 352 | } |
| 353 | readable.on("readable", onReadable) |
| 354 | readable.once("error", onError) |
| 355 | readable.once("end", onEnd) |
| 356 | |
| 357 | const pull = Effect.suspend(function loop(): Pull.Pull<Arr.NonEmptyReadonlyArray<A>, E> { |
| 358 | let item = options.readable.read(options.chunkSize) as A | null |
| 359 | if (item === null) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…