We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f466fe5 commit d71bb33Copy full SHA for d71bb33
doc/api/stream.md
@@ -3005,8 +3005,12 @@ added: v17.0.0
3005
* `streamReadable` {stream.Readable}
3006
* `options` {Object}
3007
* `strategy` {Object}
3008
- * `highWaterMark` {number}
3009
- * `size` {Function}
+ * `highWaterMark` {number} The maximum internal queue size (of the created
+ `ReadableStream`) before backpressure is applied in reading from the given
3010
+ `stream.Readable`.
3011
+ * `size` {Function} A function that size of the given chunk of data
3012
+ * `chunk` {any}
3013
+ * Returns: {number}
3014
* Returns: {ReadableStream}
3015
3016
### `stream.Writable.fromWeb(writableStream[, options])`
0 commit comments