mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-14 08:36:26 +00:00
3 lines
96 B
TypeScript
3 lines
96 B
TypeScript
export function ensureTrailingSlash(url: string): string {
|
|
return url.replace(/\/?$/, '/');
|
|
}
|