axios-miniprogram/src/helpers/combineURL.ts

9 lines
251 B
TypeScript
Raw Normal View History

2020-07-27 11:40:32 +08:00
/**
* baseURL url URL
*
* combineURL('1/2///','////3/4') => '1/2/3/4'
*/
export default function combineURL(baseURL: string, url: string): string {
return `${baseURL.replace(/\/*$/, '')}/${url.replace(/^\/*/, '')}`;
}