2023-04-02 18:26:24 +08:00
|
|
|
const combineRE = /(^|[^:])\/{2,}/g;
|
2023-04-07 08:47:54 +08:00
|
|
|
const removeRE = /\/$/;
|
2023-04-10 22:53:15 +08:00
|
|
|
export function combineURL(baseURL = '', url = ''): string {
|
2023-04-07 08:47:54 +08:00
|
|
|
return `${baseURL}/${url}`.replace(combineRE, '$1/').replace(removeRE, '');
|
2023-03-28 21:32:54 +08:00
|
|
|
}
|