(rootCandidate: UrlSegmentGroup)
| 826 | } |
| 827 | |
| 828 | export function createRoot(rootCandidate: UrlSegmentGroup): UrlSegmentGroup { |
| 829 | return rootCandidate.segments.length > 0 |
| 830 | ? new UrlSegmentGroup([], {[PRIMARY_OUTLET]: rootCandidate}) |
| 831 | : rootCandidate; |
| 832 | } |
| 833 | |
| 834 | /** |
| 835 | * Recursively |
no outgoing calls
no test coverage detected