import { toByteLines } from "https://deno.land/x/proc@0.20.22/src/transformers.ts";
Convert an AsyncIterable<Uint8Array>
into an AsyncIterable<Uint8Array[]>
(an array of lines chunked together based on buffer size)
split on lf
and also suppressing trailing cr
. lf
and trailing cr
is removed from the returned lines.