wishthis/node_modules/node-fetch/browser.js

26 lines
781 B
JavaScript
Raw Permalink Normal View History

2022-01-21 08:28:41 +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-02-08 12:35:10 +00:00
var globalObject = getGlobal();
2022-01-21 08:28:41 +00:00
2023-02-08 12:35:10 +00:00
module.exports = exports = globalObject.fetch;
2022-01-21 08:28:41 +00:00
// Needed for TypeScript and Webpack.
2023-02-08 12:35:10 +00:00
if (globalObject.fetch) {
exports.default = globalObject.fetch.bind(globalObject);
2022-01-21 08:28:41 +00:00
}
2023-02-08 12:35:10 +00:00
exports.Headers = globalObject.Headers;
exports.Request = globalObject.Request;
exports.Response = globalObject.Response;