blob: 02d2969d21ddfa100766e3ae92899d3ac601b0f7 [file] [log] [blame]
'use strict';
// AbortController was introduced quite a while after fetch and
// isnt required for PouchDB to function so polyfill if needed
var a = (typeof AbortController !== 'undefined')
? AbortController
: function () { return {abort: function () {}}; };
var f = fetch;
var h = Headers;
export {f as fetch, h as Headers, a as AbortController};