ipfs / js-ipfs

IPFS implementation in JavaScript
https://js.ipfs.tech
Other
7.44k stars 1.25k forks source link

fix: mfs blob import for files larger than 262144b #4251

Closed achingbrain closed 1 year ago

achingbrain commented 1 year ago

Turn the Blob/File object into a ReadableStream then turn that into an AsyncIterator<Uint8Array> the same as the other input types.

Fixes #3601 Fixes #3576