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