blob: 8bf4e4ec4faa898698754c8b2f93e21c238a8a18 [file] [log] [blame]
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;
}