Socket
Socket
Sign inDemoInstall

@adobe/fetch

Package Overview
Dependencies
Maintainers
21
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@adobe/fetch - npm Package Compare versions

Comparing version 4.0.7 to 4.0.8

2

package.json
{
"name": "@adobe/fetch",
"version": "4.0.7",
"version": "4.0.8",
"description": "Light-weight Fetch implementation transparently supporting both HTTP/1(.1) and HTTP/2",

@@ -5,0 +5,0 @@ "main": "./src/index.js",

@@ -108,2 +108,4 @@ /*

raw(): Record<string, string | string[]>;
entries(): Iterator<[string, string]>;

@@ -302,4 +304,5 @@ keys(): Iterator<string>;

export class FetchError extends FetchBaseError {
code: number;
erroredSysCall?: SystemError;
code: string;
errno?: number;
erroredSysCall?: string;
}

@@ -306,0 +309,0 @@

@@ -46,4 +46,4 @@ /*

if (systemError) {
// eslint-disable-next-line no-multi-assign
this.code = this.errno = systemError.code;
this.code = systemError.code;
this.errno = systemError.errno;
this.erroredSysCall = systemError.syscall;

@@ -50,0 +50,0 @@ }

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