* Appends a new value to existing values for a parameter. * @param param The parameter name. * @param value The new value to add. * @return A new body with the appended value.
(param: string, value: string | number | boolean)
| 241 | * @return A new body with the appended value. |
| 242 | */ |
| 243 | append(param: string, value: string | number | boolean): HttpParams { |
| 244 | return this.clone({param, value, op: 'a'}); |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * Constructs a new body with appended values for the given parameter name. |
no test coverage detected