* Retrieves all values for a parameter. * @param param The parameter name. * @returns All values in a string array, * or `null` if the parameter not present.
(param: string)
| 221 | * or `null` if the parameter not present. |
| 222 | */ |
| 223 | getAll(param: string): string[] | null { |
| 224 | this.init(); |
| 225 | return this.map!.get(param) || null; |
| 226 | } |
| 227 | |
| 228 | /** |
| 229 | * Retrieves all the parameters for this body. |
no test coverage detected