whatwg-fetch
Advanced tools
Comparing version 3.6.3 to 3.6.4
@@ -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 @@ |
{ | ||
"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", |
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
55100
1077