A file-like object of immutable, raw data. Blobs represent data that isn't necessarily in a JavaScript-native format.
Returns the size of the Blob object, in bytes.
Returns the MIME type of the Blob object.
Returns a promise that resolves with an ArrayBuffer representing the Blob's data.
Returns a new Blob object containing the data in the specified range of bytes of the source Blob.
The start byte index.
The end byte index.
The content type of the new Blob.
Returns a stream that can be used to read the contents of the Blob.
Returns a promise that resolves with a string representation of the Blob object.
A file-like object of immutable, raw data. Blobs represent data that isn't necessarily in a JavaScript-native format.