Converts a Blob into a Base64-encoded string.
Blob
This function reads the provided Blob using FileReader and extracts the Base64 content from the resulting data URL.
FileReader
A promise that resolves with the Base64 string representation of the blob.
If the blob cannot be read (e.g., due to an error), the promise rejects with an error message.
The Blob to convert into a Base64 string.
Generated using TypeDoc
Converts a
Blob
into a Base64-encoded string.This function reads the provided
Blob
usingFileReader
and extracts the Base64 content from the resulting data URL.Returns
A promise that resolves with the Base64 string representation of the blob.
Throws
If the blob cannot be read (e.g., due to an error), the promise rejects with an error message.