github.com/nektos/act@v0.2.63/pkg/runner/testdata/actions/node12/node_modules/node-fetch/browser.js (about)

     1  "use strict";
     2  
     3  // ref: https://github.com/tc39/proposal-global
     4  var getGlobal = function () {
     5  	// the only reliable means to get the global object is
     6  	// `Function('return this')()`
     7  	// However, this causes CSP violations in Chrome apps.
     8  	if (typeof self !== 'undefined') { return self; }
     9  	if (typeof window !== 'undefined') { return window; }
    10  	if (typeof global !== 'undefined') { return global; }
    11  	throw new Error('unable to locate global object');
    12  }
    13  
    14  var globalObject = getGlobal();
    15  
    16  module.exports = exports = globalObject.fetch;
    17  
    18  // Needed for TypeScript and Webpack.
    19  if (globalObject.fetch) {
    20  	exports.default = globalObject.fetch.bind(globalObject);
    21  }
    22  
    23  exports.Headers = globalObject.Headers;
    24  exports.Request = globalObject.Request;
    25  exports.Response = globalObject.Response;