File SystemStreamsConvert a ReadableStream to a Uint8ArrayTo convert a ReadableStream to a Uint8Array , read its contents into an ArrayBuffer with Bun.readableStreamToArrayBuffer , then create a Uint8Array that pointsCopy MarkdownOpenConvert a ReadableStream to an ArrayBufferBun.readableStreamToArrayBuffer reads the contents of a ReadableStream into an ArrayBuffer .Convert a ReadableStream to an array of chunksBun.readableStreamToArray reads the contents of a ReadableStream into an array of chunks.