github-pages-deploy-action/node_modules/cross-fetch/dist/node-polyfill.js

13 lines
271 B
JavaScript
Raw Normal View History

2020-03-07 11:45:40 +08:00
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;
}