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 9736f0c commit 6699e8bCopy full SHA for 6699e8b
test/parallel/test-stream-pipe-unpipe-streams.js
@@ -45,7 +45,7 @@ assert.strictEqual(source._readableState.pipes.length, 0);
45
const checkSrcCleanup = common.mustCall(() => {
46
assert.strictEqual(source._readableState.pipes.length, 0);
47
assert.strictEqual(source._readableState.flowing, false);
48
- for (let eventName of srcCheckEventNames) {
+ for (const eventName of srcCheckEventNames) {
49
assert.strictEqual(
50
source.listenerCount(eventName), 0,
51
`source's '${eventName}' event listeners not removed`
0 commit comments