Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions doc/api/stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -3005,8 +3005,13 @@ added: v17.0.0
* `streamReadable` {stream.Readable}
* `options` {Object}
* `strategy` {Object}
* `highWaterMark` {number}
* `size` {Function}
* `highWaterMark` {number} The maximum internal queue size (of the created
`ReadableStream`) before backpressure is applied in reading from the given
`stream.Readable`. If no value is provided, it will be taken from the
given `stream.Readable`.
* `size` {Function} A function that size of the given chunk of data
* `chunk` {any}
* Returns: {number}
* Returns: {ReadableStream}

### `stream.Writable.fromWeb(writableStream[, options])`
Expand Down