ccc-tnt-psd2ui/npm-packages/mac-v2.4.x/node-fetch/browser.js

25 lines
732 B
JavaScript
Raw Normal View History

2023-07-24 03:13:08 +00:00
"use strict";
// ref: https://github.com/tc39/proposal-global
var getGlobal = function () {
// the only reliable means to get the global object is
// `Function('return this')()`
// However, this causes CSP violations in Chrome apps.
if (typeof self !== 'undefined') { return self; }
if (typeof window !== 'undefined') { return window; }
if (typeof global !== 'undefined') { return global; }
throw new Error('unable to locate global object');
}
2023-07-27 07:04:13 +00:00
var global = getGlobal();
2023-07-24 03:13:08 +00:00
2023-07-27 07:04:13 +00:00
module.exports = exports = global.fetch;
2023-07-24 03:13:08 +00:00
// Needed for TypeScript and Webpack.
2023-07-27 07:04:13 +00:00
if (global.fetch) {
exports.default = global.fetch.bind(global);
2023-07-24 03:13:08 +00:00
}
2023-07-27 07:04:13 +00:00
exports.Headers = global.Headers;
exports.Request = global.Request;
exports.Response = global.Response;