Skip to main content
The Blob class provides several methods for consuming its contents in different formats, including .text().
const blob = new Blob(["hello world"]);
const str = await blob.text();
// => "hello world"

See Binary Data.