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

simple-cookie

Package Overview
Dependencies
Maintainers
1
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

simple-cookie - npm Package Compare versions

Comparing version 1.0.5 to 1.0.6

14

index.js

@@ -57,7 +57,11 @@ function printExpires(expires){

obj.name = n.shift();
try{
obj.value = decodeURIComponent(n.join('='));
}catch(e){
obj.value = n.join('=');
}
n = n.map((s) => {
var f;
try{
f = decodeURIComponent(s)
}catch(e){ f = s }
return s
})
obj.value = n.join('=');
return obj;

@@ -64,0 +68,0 @@ },

{
"name": "simple-cookie",
"version": "1.0.5",
"version": "1.0.6",
"description": "Simple cookie parser & serializer",

@@ -5,0 +5,0 @@ "main": "index.js",

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