Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ee-formdata-reader

Package Overview
Dependencies
Maintainers
2
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ee-formdata-reader - npm Package Compare versions

Comparing version 0.1.12 to 0.1.13

16

lib/FormdataReader.js

@@ -39,5 +39,5 @@

// the temp file name will be constructed as follows: [ cacheId, machineId, pid, pidTime, ++cacheSequenceId ].join( "-" )
// the temp file name will be constructed as follows: [ cacheId, machineId, pid, pidTime, ++cacheSequenceId ].join( "-" )
// e.g. «ee-form-data-A97562B3CDDD3EFFA97562B3CDDD3EFF-4059-1378557945760-0». this will produce unique filenames even when
// using a remote storage system
// using a remote storage system
, cachId : "ee-formdata-reader"

@@ -71,6 +71,6 @@ , cacheSequenceId : 0

if (!contentType) {
this._isNotSupportedContentType = true;
process.nextTickt(his.handleOnEnd.bind(this));
process.nextTick(this.handleOnEnd.bind(this));
return;

@@ -174,3 +174,3 @@ };

case "array":
this.form[key].push(value);
this.form[key].push(value);
break;

@@ -180,3 +180,3 @@

this.form[key] = [this.form[key]];
this.form[key].push(value);
this.form[key].push(value);
break;

@@ -190,3 +190,3 @@ }

var header = part.getHeader('content-disposition');
if (part.hasChildren()){

@@ -213,2 +213,2 @@ this._storeMultipartParts(part.parts, (header ? header.name : 'undefined'));

}
} );
} );
{
"name" : "ee-formdata-reader"
, "description" : "reads formdata from requests"
, "version" : "0.1.12"
, "version" : "0.1.13"
, "homepage" : "https://github.com/eventEmitter/ee-formdata-reader"
, "author" : "Michael van der Weg <michael@eventemitter.com> (http://eventemitter.com/)"
, "author" : "Michael van der Weg <michael@eventemitter.com> (http://eventemitter.com/)"
, "licence" : "MIT"

@@ -28,3 +28,3 @@ , "os" : "!win"

, "ee-stream-collector" : "0.1.x"
}
}
, "devDependencies": {

@@ -40,2 +40,2 @@ "mocha" : "1.17.x"

}
}
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc