// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. // This module is browser compatible. export async function toBlob( readableStream: ReadableStream, ): Promise { 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); }