Skip to content

Commit 4e0348f

Browse files
committed
fix: lint
1 parent c4f0058 commit 4e0348f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

lib/internal/webstreams/readablestream.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1432,7 +1432,7 @@ function readableStreamTee(stream, cloneForBranch2) {
14321432
readableStreamDefaultControllerClose(branch2[kState].controller);
14331433
if (!canceled1 || !canceled2)
14341434
cancelPromise.resolve();
1435-
})
1435+
});
14361436
},
14371437
[kError]() {
14381438
reading = false;

test/parallel/test-whatwg-readablestream.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1500,12 +1500,12 @@ class Source {
15001500
const [r1, r2] = new ReadableStream({
15011501
start(controller) {
15021502
process.nextTick(() => {
1503-
controller.enqueue(new Uint8Array([102, 111, 111, 98, 97, 114]))
1503+
controller.enqueue(new Uint8Array([102, 111, 111, 98, 97, 114]));
15041504

15051505
process.nextTick(() => {
1506-
controller.close()
1507-
})
1508-
})
1506+
controller.close();
1507+
});
1508+
});
15091509
}
15101510
}).tee();
15111511

0 commit comments

Comments
 (0)