3939f48e6d
Bumps [megalinter/megalinter](https://github.com/megalinter/megalinter) from 7.1.0 to 7.2.1. - [Release notes](https://github.com/megalinter/megalinter/releases) - [Changelog](https://github.com/oxsecurity/megalinter/blob/main/CHANGELOG.md) - [Commits](https://github.com/oxsecurity/megalinter/compare/v7.1.0...v7.2.1) --- updated-dependencies: - dependency-name: megalinter/megalinter dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
25 lines
781 B
JavaScript
25 lines
781 B
JavaScript
"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');
|
|
}
|
|
|
|
var globalObject = getGlobal();
|
|
|
|
module.exports = exports = globalObject.fetch;
|
|
|
|
// Needed for TypeScript and Webpack.
|
|
if (globalObject.fetch) {
|
|
exports.default = globalObject.fetch.bind(globalObject);
|
|
}
|
|
|
|
exports.Headers = globalObject.Headers;
|
|
exports.Request = globalObject.Request;
|
|
exports.Response = globalObject.Response;
|