We were closing file resources before they were being fully read to the response stream. This change updates the offset reader to return a Deno.Reader & Deno.Closer so closing the file resource can be handled alongside the read, and not accidentally closed early.
Issue
Fixes #145 Fixes #151
Details
We were closing file resources before they were being fully read to the response stream. This change updates the offset reader to return a
Deno.Reader & Deno.Closer
so closing the file resource can be handled alongside the read, and not accidentally closed early.CheckList