(rootCandidate: UrlSegmentGroup)
| 822 | } |
| 823 | |
| 824 | export function createRoot(rootCandidate: UrlSegmentGroup): UrlSegmentGroup { |
| 825 | return rootCandidate.segments.length > 0 |
| 826 | ? new UrlSegmentGroup([], {[PRIMARY_OUTLET]: rootCandidate}) |
| 827 | : rootCandidate; |
| 828 | } |
| 829 | |
| 830 | /** |
| 831 | * Recursively |
no outgoing calls
no test coverage detected
searching dependent graphs…