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

Method queryParamMap

packages/router/src/router_state.ts:237–242  ·  view source on GitHub ↗

* An Observable that contains a map of the query parameters available to all routes. * The map supports retrieving single and multiple values from the query parameter.

()

Source from the content-addressed store, hash-verified

235 * The map supports retrieving single and multiple values from the query parameter.
236 */
237 get queryParamMap(): Observable<ParamMap> {
238 this._queryParamMap ??= this.queryParams.pipe(
239 map((p: Params): ParamMap => convertToParamMap(p)),
240 );
241 return this._queryParamMap;
242 }
243
244 toString(): string {
245 return this.snapshot ? this.snapshot.toString() : `Future(${this._futureSnapshot})`;

Callers

nothing calls this directly

Calls 1

convertToParamMapFunction · 0.90

Tested by

no test coverage detected