### What is the type of issue? _No response_ ### What is the issue? `Blob.stream()` per specification has no parameters https://w3c.github.io/FileAPI/#dom-blob-stream. From the linked MDN entry > [Syntax](https://developer.mozilla.org/en-US/docs/Web/API/Blob/stream#syntax) > > `stream()` > [Parameters](https://developer.mozilla.org/en-US/docs/Web/API/Blob/stream#parameters) > None. A number is being passed to `Blob.stream()` in Bun documentation ``` const buf = Buffer.from("hello world"); const blob = new Blob([buf]); // set chunk size of 1024 bytes const stream = blob.stream(1024); ``` ### Where did you find it? https://bun.sh/guides/binary/buffer-to-readablestream