MCPcopy Index your code
hub / github.com/angular/angular / getAll

Method getAll

packages/common/http/src/params.ts:223–226  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

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.

Callers 1

createQueryMapMethod · 0.95

Calls 2

initMethod · 0.95
getMethod · 0.65

Tested by

no test coverage detected