(container: Params, containee: Params)
| 143 | } |
| 144 | |
| 145 | function equalParams(container: Params, containee: Params): boolean { |
| 146 | // TODO: This does not handle array params correctly. |
| 147 | return shallowEqual(container, containee); |
| 148 | } |
| 149 | |
| 150 | function equalSegmentGroups( |
| 151 | container: UrlSegmentGroup, |
nothing calls this directly
no test coverage detected
searching dependent graphs…