You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
365 B
16 lines
365 B
"use strict";
|
|
|
|
var realFetch = require('node-fetch');
|
|
module.exports = function(url, options) {
|
|
if (/^\/\//.test(url)) {
|
|
url = 'https:' + url;
|
|
}
|
|
return realFetch.call(this, url, options);
|
|
};
|
|
|
|
if (!global.fetch) {
|
|
global.fetch = module.exports;
|
|
global.Response = realFetch.Response;
|
|
global.Headers = realFetch.Headers;
|
|
global.Request = realFetch.Request;
|
|
}
|