Skip to content

Commit 36e09c6

Browse files
committed
remove duplicate plus sign
1 parent cd4e41b commit 36e09c6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/form_data.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ FormData.prototype._trackLength = function(header, value, options) {
6767
// @check why add CRLF? does this account for custom/multiple CRLFs?
6868
this._overheadLength +=
6969
Buffer.byteLength(header) +
70-
+ FormData.LINE_BREAK.length;
70+
FormData.LINE_BREAK.length;
7171

7272
// empty or either doesn't have path or not an http response
7373
if (!value || ( !value.path && !(value.readable && value.hasOwnProperty('httpVersion')) )) {

0 commit comments

Comments
 (0)