* Check if a route exists at the given path.
(routePath: string)
| 76 | * Check if a route exists at the given path. |
| 77 | */ |
| 78 | has(routePath: string): boolean { |
| 79 | return this.prefixToRoute.has(routePath) |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * Get a route by exact path. |
no outgoing calls
no test coverage detected