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

Function createActivatedRoute

packages/router/src/create_router_state.ts:86–97  ·  view source on GitHub ↗
(c: ActivatedRouteSnapshot)

Source from the content-addressed store, hash-verified

84}
85
86function createActivatedRoute(c: ActivatedRouteSnapshot) {
87 return new ActivatedRoute(
88 new BehaviorSubject(c.url),
89 new BehaviorSubject(c.params),
90 new BehaviorSubject(c.queryParams),
91 new BehaviorSubject(c.fragment),
92 new BehaviorSubject(c.data),
93 c.outlet,
94 c.component,
95 c,
96 );
97}

Callers 1

createNodeFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…