* Safely assert whether the given value is a URLSearchParams instance. * * In some execution environments URLSearchParams is not defined.
(value: any)
| 60 | * In some execution environments URLSearchParams is not defined. |
| 61 | */ |
| 62 | function 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 |
no outgoing calls
no test coverage detected
searching dependent graphs…