mirror of
https://github.com/wasp-lang/wasp.git
synced 2025-01-06 17:28:33 +03:00
4 lines
109 B
TypeScript
4 lines
109 B
TypeScript
export function stripTrailingSlash(url?: string): string | undefined {
|
|
return url?.replace(/\/$/, "");
|
|
}
|