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

@whatwg-node/node-fetch

Package Overview
Dependencies
Maintainers
1
Versions
509
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@whatwg-node/node-fetch - npm Package Compare versions

Comparing version 0.0.6-alpha-20230207093213-131f46f to 0.0.6-alpha-20230207100807-5eb50c6

7

index.js

@@ -744,6 +744,5 @@ 'use strict';

const key = name.toLowerCase();
if (this.map.has(key)) {
value = this.map.get(key) + ', ' + value;
}
this.map.set(key, value);
const existingValue = this.map.get(key);
const finalValue = existingValue ? `${existingValue}, ${value}` : value;
this.map.set(key, finalValue);
}

@@ -750,0 +749,0 @@ get(name) {

{
"name": "@whatwg-node/node-fetch",
"version": "0.0.6-alpha-20230207093213-131f46f",
"version": "0.0.6-alpha-20230207100807-5eb50c6",
"description": "Fetch API implementation for Node",

@@ -5,0 +5,0 @@ "sideEffects": false,

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