<!-- Hello! To ensure this issue is correctly addressed as soon as possible by the IPFS team, please try to make sure: - This issue is relevant to this repository's topic or codebase. - A clear description is provided. It should includes as much relevant information as possible and clear scope for the issue to be actionable. FOR GENERAL DISCUSSION, HELP OR QUESTIONS, please see the options at https://ipfs.io/help or head directly to https://discuss.ipfs.io. (you can delete this section after reading) --> This code works in Firefox 115.0 and throws error in Chrome 114.0: ```ts const fileObject = Array.from(files).map((file) => ({ path: file.name, content: file.stream(), })); for await (const cid of heliaFS.addAll(fileObject)) { console.log(cid); } ``` The reason is in this function: https://github.com/ipfs/js-ipfs-unixfs/blob/47218799b4c28b0a4b4dc5a71b9d981e5d803424/packages/ipfs-unixfs-importer/src/dag-builder/index.ts#L37-L39 It returns `true` in Firefox and `false` in Chrome for `file.stream()` result (instance of `ReadableStream`) passed as value of `fileObject.content`:  