Closed
Description
Large Blob/Files becomes an issue if you don't slice it into chunks...
Streams brings other cool feature like pipe-ing, back pressure & transforming
Currently I'm using Response (part of Fetch) to transform a blob to a stream that i can "read into" step by step
var stream = new Response(blob).body
var reader = stream.getReader()
This works okey. but it feels hacky.
Could we get new method to get a stream from File & Blob's please?