* 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.
()
| 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})`; |
nothing calls this directly
no test coverage detected