Skip to main content
Module

std/streams/to_blob.ts

Deno standard library
Go to Latest
File
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.// This module is browser compatible.
export async function toBlob( readableStream: ReadableStream,): Promise<Blob> { const reader = readableStream.getReader(); const chunks: Uint8Array[] = [];
while (true) { const { done, value } = await reader.read();
if (done) { break; }
chunks.push(value); }
return new Blob(chunks);}