We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0079b94 commit ff1da17Copy full SHA for ff1da17
doc/api/fs.md
@@ -865,6 +865,7 @@ changes:
865
* `autoClose` {boolean}
866
* `start` {integer}
867
* `end` {integer}
868
+ * `highWaterMark` {integer}
869
870
Returns a new [`ReadStream`][] object. (See [Readable Stream][]).
871
@@ -880,7 +881,8 @@ const defaults = {
880
881
encoding: null,
882
fd: null,
883
mode: 0o666,
- autoClose: true
884
+ autoClose: true,
885
+ highWaterMark: 64 * 1024
886
};
887
```
888
0 commit comments