UNPKG

abortcontroller-polyfill

Version:

Polyfill/ponyfill for the AbortController DOM API + optional patching of fetch (stub that calls catch, doesn't actually abort request).

14 lines (9 loc) 273 B
import AbortController, {AbortSignal} from './abortcontroller'; (function(self) { 'use strict'; if (self.AbortController) { return; } self.AbortController = AbortController; self.AbortSignal = AbortSignal; })(typeof self !== 'undefined' ? self : global);