( path: Router.PathInput )
| 401 | ) as any |
| 402 | |
| 403 | const removeTrailingSlash = ( |
| 404 | path: Router.PathInput |
| 405 | ): Router.PathInput => (path.endsWith("/") ? path.slice(0, -1) : path) as any |
| 406 | |
| 407 | /** @internal */ |
| 408 | export const prefixPath: { |
no outgoing calls
no test coverage detected
searching dependent graphs…