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 fe21886 commit b16e6d2Copy full SHA for b16e6d2
doc/api/fs.md
@@ -589,6 +589,7 @@ added: v0.1.31
589
* `autoClose` {boolean}
590
* `start` {integer}
591
* `end` {integer}
592
+ * `highWaterMark` {integer}
593
594
Returns a new [`ReadStream`][] object. (See [Readable Stream][]).
595
@@ -604,7 +605,8 @@ const defaults = {
604
605
encoding: null,
606
fd: null,
607
mode: 0o666,
- autoClose: true
608
+ autoClose: true,
609
+ highWaterMark: 64 * 1024
610
};
611
```
612
0 commit comments