* Reports whether the body includes one or more values for a given parameter. * @param param The parameter name. * @returns True if the parameter has one or more values, * false if it has no value or is not present.
(param: string)
| 198 | * false if it has no value or is not present. |
| 199 | */ |
| 200 | has(param: string): boolean { |
| 201 | this.init(); |
| 202 | return this.map!.has(param); |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * Retrieves the first value for a parameter. |