From d9e47f1604ffc325a14de618130b1b491a68bc94 Mon Sep 17 00:00:00 2001 From: Benjamin Gruenbaum Date: Wed, 1 Mar 2023 15:39:04 +0100 Subject: [PATCH] doc: fix stream iterator helpers examples --- doc/api/stream.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/stream.md b/doc/api/stream.md index dd28f15a2b711f..d3719dc640f6c8 100644 --- a/doc/api/stream.md +++ b/doc/api/stream.md @@ -2239,7 +2239,7 @@ const anyBigFile = await Readable.from([ 'file3', ]).some(async (fileName) => { const stats = await stat(fileName); - return stat.size > 1024 * 1024; + return stats.size > 1024 * 1024; }, { concurrency: 2 }); console.log(anyBigFile); // `true` if any file in the list is bigger than 1MB console.log('done'); // Stream has finished @@ -2291,7 +2291,7 @@ const foundBigFile = await Readable.from([ 'file3', ]).find(async (fileName) => { const stats = await stat(fileName); - return stat.size > 1024 * 1024; + return stats.size > 1024 * 1024; }, { concurrency: 2 }); console.log(foundBigFile); // File name of large file, if any file in the list is bigger than 1MB console.log('done'); // Stream has finished @@ -2341,7 +2341,7 @@ const allBigFiles = await Readable.from([ 'file3', ]).every(async (fileName) => { const stats = await stat(fileName); - return stat.size > 1024 * 1024; + return stats.size > 1024 * 1024; }, { concurrency: 2 }); // `true` if all files in the list are bigger than 1MiB console.log(allBigFiles);