Convert a ReadableStream to a Blob
Bun provides several conveniences for reading the contents of a ReadableStream into other formats. To read a stream into a Blob, call its blob() method.
const stream = new ReadableStream();
const blob = await stream.blob();Bun.readableStreamToBlob(stream) does the same thing, but is deprecated in favor of stream.blob().