(as: UrlSegment[], bs: UrlSegment[])
| 383 | } |
| 384 | |
| 385 | export function equalPath(as: UrlSegment[], bs: UrlSegment[]): boolean { |
| 386 | if (as.length !== bs.length) return false; |
| 387 | return as.every((a, i) => a.path === bs[i].path); |
| 388 | } |
| 389 | |
| 390 | export function mapChildrenIntoArray<T>( |
| 391 | segment: UrlSegmentGroup, |
no outgoing calls
no test coverage detected
searching dependent graphs…