Skip to content

Commit aebd82e

Browse files
Trottdanielleadams
authored andcommitted
stream: remove empty block
PR-URL: #41831 Backport-PR-URL: #42160 Refs: https://eslint.org/docs/rules/no-empty Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Tobias Nießen <[email protected]> Reviewed-By: Antoine du Hamel <[email protected]>
1 parent 08b3bd2 commit aebd82e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/webstreams/readablestream.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1358,7 +1358,7 @@ function readableStreamPipeTo(
13581358

13591359
async function run() {
13601360
// Run until step resolves as true
1361-
while (!await step()) {}
1361+
while (!await step());
13621362
}
13631363

13641364
if (signal !== undefined) {

0 commit comments

Comments
 (0)