next
Version:
The React Framework
44 lines (43 loc) • 1.48 kB
JavaScript
var _nodeFetch = _interopRequireWildcard(require("next/dist/compiled/node-fetch"));
function _interopRequireWildcard(obj) {
if (obj && obj.__esModule) {
return obj;
} else {
var newObj = {};
if (obj != null) {
for(var key in obj){
if (Object.prototype.hasOwnProperty.call(obj, key)) {
var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {};
if (desc.get || desc.set) {
Object.defineProperty(newObj, key, desc);
} else {
newObj[key] = obj[key];
}
}
}
}
newObj.default = obj;
return newObj;
}
}
// Polyfill fetch() in the Node.js environment
if (!global.fetch) {
const agent = ({ protocol })=>protocol === 'http:' ? global.__NEXT_HTTP_AGENT : global.__NEXT_HTTPS_AGENT
;
const fetchWithAgent = (url, opts, ...rest)=>{
if (!opts) {
opts = {
agent
};
} else if (!opts.agent) {
opts.agent = agent;
}
return (0, _nodeFetch).default(url, opts, ...rest);
};
global.fetch = fetchWithAgent;
global.Headers = _nodeFetch.Headers;
global.Request = _nodeFetch.Request;
global.Response = _nodeFetch.Response;
}
//# sourceMappingURL=node-polyfill-fetch.js.map
;