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

Function isUrlSearchParams

packages/common/http/src/request.ts:62–64  ·  view source on GitHub ↗

* Safely assert whether the given value is a URLSearchParams instance. * * In some execution environments URLSearchParams is not defined.

(value: any)

Source from the content-addressed store, hash-verified

60 * In some execution environments URLSearchParams is not defined.
61 */
62function isUrlSearchParams(value: any): value is URLSearchParams {
63 return typeof URLSearchParams !== 'undefined' && value instanceof URLSearchParams;
64}
65
66/**
67 * `Content-Type` is an HTTP header used to indicate the media type

Callers 1

serializeBodyMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…