[TBD]
- Can create
Blob
s fromArrayBuffer
,ArrayBufferView
too. With React Native, you can only create Blob from string or another Blob - Each
Blob
hastext()
,arrayBuffer()
, andstream()
methods. With React Native, you can only access the contents ofBlob
via customdata
field Blob
does not depend on a native module. UsesArrayBuffer
s natively, thanks to Nitro Modules. With React Native, Blob usesRCTBlobManager
under the hood to create and hold references to the data.Blob
is automatically deallocated when no longer in use. You don't have toclose()
it manually