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

xfetch

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

xfetch - npm Package Compare versions

Comparing version 3.1.1 to 3.1.2

10

dist/index.js

@@ -160,6 +160,10 @@ 'use strict';

const cookie = response.headers.get('set-cookie');
const cookies = response.headers.get('set-cookie');
if (cookie) {
await setCookie(cookie, url);
if (cookies) {
const cookieList = cookies.split(',');
for (const cookie of cookieList) {
await setCookie(cookie, url);
}
}

@@ -166,0 +170,0 @@ }

@@ -73,3 +73,3 @@ {

},
"version": "3.1.1"
"version": "3.1.2"
}

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