node-filewalker
node-filewalker copied to clipboard
Now options may have a 'readStream' option
This replaces the PR 18. As mentioned in Issue 17, but now readStream
may be included in options, instead of being passed as an argument to filewalker.
var options = {
readStream: {
highWaterMark: 1024 * 1024 // 1 MB
}
};
filewalker( path, options );
A test case was also included (in basic-test.js
).
@oleics Ready to merge