From e9eee81473f46fefe7b2b3dd07737d038e440ba9 Mon Sep 17 00:00:00 2001 From: Luigi Pinca Date: Mon, 15 Nov 2021 20:31:03 +0100 Subject: [PATCH] Revert "doc: fix typo in stream docs" This reverts commit 1db2ffd0084d9c77cc1aa4a2b8544e42fce11ba4. Fixes: https://github.com/nodejs/node/issues/40818 --- doc/api/stream.md | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/doc/api/stream.md b/doc/api/stream.md index 0f33ac81440f41..fb9d0e874ef952 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -2141,22 +2141,6 @@ Calling `Readable.from(string)` or `Readable.from(buffer)` will not have the strings or buffers be iterated to match the other streams semantics for performance reasons. -### `stream.Readable.fromWeb(readableStream[, options])` - - - -> Stability: 1 - Experimental - -* `readableStream` {ReadableStream} -* `options` {Object} - * `encoding` {string} - * `highWaterMark` {number} - * `objectMode` {boolean} - * `signal` {AbortSignal} -* Returns: {stream.Readable} - ### `stream.Readable.isDisturbed(stream)`