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

pintura

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pintura - npm Package Compare versions

Comparing version 0.3.2 to 0.3.3

2

jsgi/map.js

@@ -0,1 +1,3 @@

function(nextApp){

@@ -2,0 +4,0 @@ return function(request){

4

media/url-encoded.js

@@ -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;
};
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