Skip to content

Commit e9f226d

Browse files
committed
formatting
1 parent bf10f2f commit e9f226d

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

lib/incoming_form.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ IncomingForm.prototype.parse = function(req, cb) {
146146
this._parser.end();
147147
});
148148

149-
console.log(this._parser)
150149
this._parser.once('error', (error) => {
151150
this._error(error);
152151
});

lib/querystring_parser.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,8 @@ class QuerystringParser extends Transform {
2525
value: fields[key],
2626
});
2727
}
28-
this.buffer = '';
29-
30-
callback();
28+
this.buffer = '';
29+
callback();
3130
}
3231
}
3332

0 commit comments

Comments
 (0)