mirror of https://github.com/jkjoy/sunpeiwen.git
13 lines
262 B
JavaScript
13 lines
262 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const urlJoin = function(base, relative) {
|
||
|
if (relative && /^https*:\/\//.test(relative)) {
|
||
|
return relative;
|
||
|
}
|
||
|
return relative
|
||
|
? base.replace(/\/+$/, '') + '/' + relative.replace(/^\/+/, '')
|
||
|
: base;
|
||
|
};
|
||
|
|
||
|
module.exports = urlJoin;
|