@whatwg-node/node-fetch
Advanced tools
Comparing version 0.0.6-alpha-20230207093213-131f46f to 0.0.6-alpha-20230207100807-5eb50c6
@@ -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
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
86507
2316