We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ec0b74 commit 0d8c58fCopy full SHA for 0d8c58f
lib/_stream_duplex.js
@@ -39,7 +39,7 @@ Object.setPrototypeOf(Duplex, Readable);
39
{
40
// Allow the keys array to be GC'ed.
41
const keys = Object.keys(Writable.prototype);
42
- for (var v = 0; v < keys.length; v++) {
+ for (let v = 0; v < keys.length; v++) {
43
const method = keys[v];
44
if (!Duplex.prototype[method])
45
Duplex.prototype[method] = Writable.prototype[method];
0 commit comments