@edge-runtime/cookies
Advanced tools
Comparing version 3.2.0 to 3.2.1
@@ -48,2 +48,6 @@ "use strict"; | ||
const splitAt = pair.indexOf("="); | ||
if (splitAt === -1) { | ||
map.set(pair, "true"); | ||
continue; | ||
} | ||
const [key, value] = [pair.slice(0, splitAt), pair.slice(splitAt + 1)]; | ||
@@ -50,0 +54,0 @@ try { |
@@ -5,3 +5,3 @@ { | ||
"homepage": "https://edge-runtime.vercel.app/packages/cookies", | ||
"version": "3.2.0", | ||
"version": "3.2.1", | ||
"main": "dist/index.js", | ||
@@ -32,3 +32,3 @@ "module": "dist/index.mjs", | ||
"@edge-runtime/format": "2.1.0", | ||
"@edge-runtime/jest-environment": "2.2.0" | ||
"@edge-runtime/jest-environment": "2.2.1" | ||
}, | ||
@@ -35,0 +35,0 @@ "engines": { |
Sorry, the diff of this file is not supported yet
45521
767