Skip to content
Merged
Changes from 5 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: 8 additions & 1 deletion doc/api/stream.md
Original file line number Diff line number Diff line change
Expand Up @@ -3084,10 +3084,17 @@ changes:
-->

* `stream` {Readable|Duplex|ReadableStream}
* Returns: {boolean}
* Returns: {boolean|null} - Only returns a `null` if type of `stream.readable` argument passed is not a boolean.

Returns whether the stream is readable.

### `stream.isWritable(stream)`

* `stream` {Writable|Duplex|WritableStream}
* Returns: {boolean|null} - Only returns a `null` if type of `stream.writable` argument passed is not a boolean.

Returns whether the stream is writable.

### `stream.Readable.from(iterable[, options])`

<!-- YAML
Expand Down
Loading