ee-formdata-reader
Advanced tools
Comparing version 0.1.2 to 0.1.4
@@ -48,4 +48,4 @@ | ||
, init: function( options ){ | ||
this.request = type.object( options.request ) ? options.request : options; | ||
, init: function( options, request ){ | ||
this.request = type.object( request ) ? request : ( type.object( options.request ) ? options.request : options ); | ||
@@ -52,0 +52,0 @@ // get machine id |
{ | ||
"name" : "ee-formdata-reader" | ||
, "description" : "reads formdata from a request" | ||
, "version" : "0.1.2" | ||
, "version" : "0.1.4" | ||
, "homepage" : "https://github.com/eventEmitter/ee-formdata-reader" | ||
@@ -6,0 +6,0 @@ , "author" : "Michael van der Weg <michael@eventemitter.com> (http://eventemitter.com/)" |
@@ -25,3 +25,3 @@ | ||
, getHeader: function(){ | ||
return "multipart/form-data"; | ||
return "multipart/form-data; boundary=AaB03x"; | ||
} | ||
@@ -28,0 +28,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9345