You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

whatwg-fetch

Package Overview
Dependencies
Maintainers
3
Versions
51
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.6.3 to 3.6.4

7

dist/fetch.umd.js

@@ -379,3 +379,8 @@ (function (global, factory) {

this.mode = options.mode || this.mode || null;
this.signal = options.signal || this.signal;
this.signal = options.signal || this.signal || (function () {
if ('AbortController' in global) {
var ctrl = new AbortController();
return ctrl.signal;
}
}());
this.referrer = null;

@@ -382,0 +387,0 @@

@@ -373,3 +373,8 @@ var global =

this.mode = options.mode || this.mode || null
this.signal = options.signal || this.signal
this.signal = options.signal || this.signal || (function () {
if ('AbortController' in global) {
var ctrl = new AbortController();
return ctrl.signal;
}
}());
this.referrer = null

@@ -376,0 +381,0 @@

2

package.json
{
"name": "whatwg-fetch",
"description": "A window.fetch polyfill.",
"version": "3.6.3",
"version": "3.6.4",
"main": "./dist/fetch.umd.js",

@@ -6,0 +6,0 @@ "module": "./fetch.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc