M
Size: a a a
M
CM
ПБ
ПБ
CM
ПБ
M
function api(path, opts) {
return fetch(`https://192.168.0.106:8432/api/v1` + path, opts);
}
api("/User/get");
M
ПБ
ПБ
ПБ
CM
M
M
ПБ
ПБ
ПБ
M
module.exports = function combineURLs(baseURL, relativeURL) {
return relativeURL
? baseURL.replace(/\/+$/, '') + '/' + relativeURL.replace(/^\/+/, '')
: baseURL;
};
M
ПБ