Consume a random-access storage as a readable stream.
var Stream = require('random-access-stream')
var ram = require('random-access-memory')
var store = ram(Buffer('Hello cruel world'))
var stream = Stream(store)
stream.pipe(process.stdout)
Options:
start=0
The byte offset at which to start readingend=Infinity
The byte offset at which to end reading
MIT