( containerPaths: UrlSegment[], containeePaths: UrlSegment[], options: ParamMatchOptions, )
| 218 | } |
| 219 | |
| 220 | function matrixParamsMatch( |
| 221 | containerPaths: UrlSegment[], |
| 222 | containeePaths: UrlSegment[], |
| 223 | options: ParamMatchOptions, |
| 224 | ) { |
| 225 | return containeePaths.every((containeeSegment, i) => { |
| 226 | return paramCompareMap[options](containerPaths[i].parameters, containeeSegment.parameters); |
| 227 | }); |
| 228 | } |
| 229 | |
| 230 | /** |
| 231 | * @description |
no outgoing calls
no test coverage detected
searching dependent graphs…