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