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

remix-utils

Package Overview
Dependencies
Maintainers
1
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

remix-utils - npm Package Compare versions

Comparing version 5.0.0 to 5.0.1

2

browser/server/rolling-cookie.js
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": {

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