Skip to content

Commit

Permalink
Update: Ensure highWaterMark is 16 by default
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Feb 2, 2017
1 parent efbcd01 commit 1fbf70d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function GlobStream(ourGlob, negatives, opt) {
// TODO: document that we only accept highWaterMark
Readable.call(this, {
objectMode: true,
highWaterMark: opt.highWaterMark
highWaterMark: opt.highWaterMark || 16
});

var self = this;
Expand Down

0 comments on commit 1fbf70d

Please # to comment.