Files
scrap/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.d.ts
2024-09-24 03:52:46 +00:00

9 lines
259 B
TypeScript

/**
* 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 declare function removeTrailingSlash(route: string): string;