MCPcopy Index your code
hub / github.com/angular/angular / matrixParamsMatch

Function matrixParamsMatch

packages/router/src/url_tree.ts:220–228  ·  view source on GitHub ↗
(
  containerPaths: UrlSegment[],
  containeePaths: UrlSegment[],
  options: ParamMatchOptions,
)

Source from the content-addressed store, hash-verified

218}
219
220function 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

Callers 2

equalSegmentGroupsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…