Re: [w3c/FileAPI] Why are Blob() and File() constructors at Chromium 81 throwing RangeError? (#147)

Randomly picked `Uint8Array` `length`s from the input `Array` having `length` `660`:

`570404`
`361196`

Interestingly when running the commented code below, removing the `.then()` which returns `new Uint8Array(<ArrayBuffer>)` to try to isolate `Uint8Array` being the cause due to the `length`  of the resulting `Uint8Array`, given how the `Uint8Array`  is merged into a  single `Uint8Array` at code at the previous comment, `Promise.all()` does not appear to ever settle.

         .then(blob => {
            return blob.arrayBuffer();
          })
          /*
          .then(ab => {
            return new Uint8Array(ab);
          })
          */

-- 
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/147#issuecomment-602287413

Received on Sunday, 22 March 2020 22:37:39 UTC