File SystemStreamsConvert a ReadableStream to a BufferTo convert a ReadableStream to a Buffer , read its contents into an ArrayBuffer with Bun.readableStreamToArrayBuffer , then create a Buffer that points to it.Copy MarkdownOpenConvert a ReadableStream to a BlobBun.readableStreamToBlob reads the contents of a ReadableStream into a Blob .Convert a ReadableStream to an ArrayBufferBun.readableStreamToArrayBuffer reads the contents of a ReadableStream into an ArrayBuffer .