* 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.
()
| 275 | * The map supports retrieving single and multiple values from the query parameter. |
| 276 | */ |
| 277 | get queryParamMap(): Observable<ParamMap> { |
| 278 | this._queryParamMap ??= this.queryParams.pipe( |
| 279 | map((p: Params): ParamMap => convertToParamMap(p)), |
| 280 | ); |
| 281 | return this._queryParamMap; |
| 282 | } |
| 283 | |
| 284 | toString(): string { |
| 285 | return this.snapshot ? this.snapshot.toString() : `Future(${this._futureSnapshot})`; |
nothing calls this directly
no test coverage detected