Closed thiagodp closed 6 years ago
To be able to configure the ReadStream, as mentioned in the Issue 17, it was added an object readStreamOptions to filewalkers constructor:
ReadStream
readStreamOptions
filewalker
filewalker( path, options, readStreamOptions )
The third parameter is optional and it assumes fs.createReadStream()'s default values.
fs.createReadStream()
I like this RM. Can you make it so, that the options for readStream are located in options.readStream with a empty object as default on null/undefined?
@oleics Done in PR 19.
To be able to configure the
ReadStream
, as mentioned in the Issue 17, it was added an objectreadStreamOptions
tofilewalker
s constructor:The third parameter is optional and it assumes
fs.createReadStream()
's default values.