18 lines
424 B
JavaScript
18 lines
424 B
JavaScript
'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;
|
|
}
|
|
window.BASE_API = 'http://localhost:4000/api/v1';
|