Re: [w3c/FileAPI] Reslove Blob to an existing ArrayBuffer (#143)

fyi a ReadableStream is also transferable with postMessages

```js
const readable = new ReadableStream()
const mc = new MessageChannel()
mc.port1.postMessage(readable, [readable])
```

but it only works in chrome right now i think...

-- 
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/143#issuecomment-572609041

Received on Thursday, 9 January 2020 15:22:09 UTC