Comparing version 0.3.2 to 0.3.3
@@ -0,1 +1,3 @@ | ||
function(nextApp){ | ||
@@ -2,0 +4,0 @@ return function(request){ |
@@ -37,4 +37,4 @@ /** | ||
var nameValue = parts[i].split("="); | ||
var value = decodeURIComponent(nameValue[1]); | ||
var key = decodeURIComponent(nameValue[0]); | ||
var value = decodeURIComponent(nameValue[1].replace(/\+/g, ' ')); | ||
var key = decodeURIComponent(nameValue[0].replace(/\+/g, ' ')); | ||
value = stringToValue(value); | ||
@@ -41,0 +41,0 @@ // N.B. multiple same-named keys should be stored as an array |
{ | ||
"name": "pintura", | ||
"version": "0.3.2", | ||
"version": "0.3.3", | ||
"author": "Kris Zyp", | ||
@@ -5,0 +5,0 @@ "email": "kriszyp@gmail.com", |
@@ -24,2 +24,3 @@ // helpful for debugging | ||
console.log("Listening on port " + port); | ||
return server; | ||
}; |
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
231070
5375