github-pages-deploy-action/node_modules/cross-fetch/dist/node-polyfill.js
2020-03-06 22:45:40 -05:00

13 lines
271 B
JavaScript

var fetchNode = require('./node-ponyfill');
var fetch = fetchNode.fetch.bind({});
fetch.polyfill = true;
if (!global.fetch) {
global.fetch = fetch;
global.Response = fetchNode.Response;
global.Headers = fetchNode.Headers;
global.Request = fetchNode.Request;
}