You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently Blob and File relies on ArrayBuffer serialization, which means it uses the Uint8Array indirectly. This serialization form is accurate, but is probably too large for consideration. Blob accepts Uint8Array, ArrayBuffer, DataView and string, so it's probably ideal if the string format can be utilized instead.
The text was updated successfully, but these errors were encountered:
Currently
Blob
andFile
relies onArrayBuffer
serialization, which means it uses theUint8Array
indirectly. This serialization form is accurate, but is probably too large for consideration.Blob
acceptsUint8Array
,ArrayBuffer
,DataView
and string, so it's probably ideal if the string format can be utilized instead.The text was updated successfully, but these errors were encountered: