File size: 287 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 |
/**
* Removes the trailing slash for a given route or page path. Preserves the
* root page. Examples:
* - `/foo/bar/` -> `/foo/bar`
* - `/foo/bar` -> `/foo/bar`
* - `/` -> `/`
*/
export function removeTrailingSlash(route: string) {
return route.replace(/\/$/, '') || '/'
}
|