(route: { name: string | null; id: string })
| 211 | } |
| 212 | |
| 213 | export function routeDisplayName(route: { name: string | null; id: string }): string { |
| 214 | return route.name ?? `Route ${route.id}`; |
| 215 | } |
| 216 | |
| 217 | export function buildRequestName(route: { name: string | null; paths: string[] | null; id: string }): string { |
| 218 | const rawPath = route.paths?.[0]; |
no outgoing calls
no test coverage detected