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 091e7f4 commit 7212774Copy full SHA for 7212774
doc/api/stream.md
@@ -1907,8 +1907,9 @@ This method allows easily obtaining the contents of a stream. If the
1907
stream is in [object mode][object-mode] an array of its contents is returned.
1908
If the stream is not in object mode a Buffer containing its data is returned.
1909
1910
-As this method reads the entire stream into memory, it negates many of the
1911
-benefits of streams and should not be used in performance sensitive situations.
+As this method reads the entire stream into memory, it negates the benefits of
+streams. It's intended for interoperability and convenience, not as the primary
1912
+way to consume streams.
1913
1914
```mjs
1915
import { Readable } from 'stream';
0 commit comments