Open
Description
By using @remix/remix-run and its multipart feature, we receive an AsyncIterator as data.
In order to easily upload to Azure storage, we need to transform this AsyncIterator to :
- ArrayBuffer / Blob
- or Readable Stream
Does this library can handle such AsyncIterator? I can see in the ts types an AsyncIterator but of buffer or string not Uint8Array.
Thanks