(route: Route)
| 227 | |
| 228 | /** Returns the `route.outlet` or PRIMARY_OUTLET if none exists. */ |
| 229 | export function getOutlet(route: Route): string { |
| 230 | return route.outlet || PRIMARY_OUTLET; |
| 231 | } |
| 232 | |
| 233 | /** |
| 234 | * Sorts the `routes` such that the ones with an outlet matching `outletName` come first. |
no outgoing calls
no test coverage detected
searching dependent graphs…