import { toChunkedLines } from "https://deno.land/x/proc@0.22.1/mod.ts";
Convert an AsyncIterable<Uint8Array>
into an AsyncIterable<string[]>
of lines.
For larger data sets and very small lines (like broken into one word per line), using this helps keep the data being passed at reasonable sizes and avoids the "small string" problem. Consider using this instead of toLines in that case.