[w3c/FileAPI] Streams is hot, FileReader.readAs____ is not (#40)

Large Blob/Files becomes an issue if you don't slice it into chunks...

Streams brings other cool feature too like piping, back pressure transform
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?

---
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/FileAPI/issues/40

Received on Saturday, 11 June 2016 23:30:29 UTC