New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@edge-runtime/cookies

Package Overview
Dependencies
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@edge-runtime/cookies - npm Package Compare versions

Comparing version 3.0.3 to 3.0.4

5

dist/index.js

@@ -46,6 +46,7 @@ "use strict";

continue;
const [key, value] = pair.split("=", 2);
const splitAt = pair.indexOf("=");
const [key, value] = [pair.slice(0, splitAt), pair.slice(splitAt + 1)];
try {
map.set(key, decodeURIComponent(value ?? "true"));
} catch (err) {
} catch {
}

@@ -52,0 +53,0 @@ }

4

package.json

@@ -5,3 +5,3 @@ {

"homepage": "https://edge-runtime.vercel.app/packages/cookies",
"version": "3.0.3",
"version": "3.0.4",
"main": "dist/index.js",

@@ -30,3 +30,3 @@ "module": "dist/index.mjs",

"@edge-runtime/format": "2.0.0",
"@edge-runtime/jest-environment": "2.0.3",
"@edge-runtime/jest-environment": "2.0.4",
"@types/cookie": "0.5.1",

@@ -33,0 +33,0 @@ "tsup": "6"

Sorry, the diff of this file is not supported yet

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