Minor Documentation discrepancy: catReadableStream #1206
Description
There appears to be a minor documentation discrepancy in whether options can be passed to catreadablestream.
https://github.com/ipfs/js-ipfs#files
says ipfs.files.catReadableStream(ipfsPath, [options])
i.e. implies can pass options to the ReadableStream.
https://github.com/ipfs/interface-ipfs-core/blob/master/SPEC/FILES.md#catreadablestream
Says JavaScript - ipfs.files.catReadableStream(ipfsPath) -> Readable Stream
i.e. implies no options.
The code at files.js has
catReadableStream: (ipfsPath) => toStream.source(_catPullStream(ipfsPath)),
So I think its the interface-ipfs-core docs are correct and js-ipfs docs that are incorrect.
BUT @diasdavid , when you were here, you suggested there was a way to pass stream options (especially the ones for byte range)? Is there another way?