remix-utils
Advanced tools
Comparing version 5.0.0 to 5.0.1
export async function rollingCookie(cookie, request, responseHeaders) { | ||
let value = await cookie.parse(responseHeaders.get("Set-Cookie")); | ||
if (value) | ||
if (value !== null) | ||
return; | ||
@@ -5,0 +5,0 @@ value = await cookie.parse(request.headers.get("Cookie")); |
@@ -6,3 +6,3 @@ "use strict"; | ||
let value = await cookie.parse(responseHeaders.get("Set-Cookie")); | ||
if (value) | ||
if (value !== null) | ||
return; | ||
@@ -9,0 +9,0 @@ value = await cookie.parse(request.headers.get("Cookie")); |
{ | ||
"name": "remix-utils", | ||
"version": "5.0.0", | ||
"version": "5.0.1", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "engines": { |
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
210646