(key, value)
| 2105 | } |
| 2106 | } |
| 2107 | addHeader(key, value) { |
| 2108 | processHeader(this, key, value); |
| 2109 | return this; |
| 2110 | } |
| 2111 | }; |
| 2112 | function processHeader(request, key, val) { |
| 2113 | if (val && (typeof val === "object" && !Array.isArray(val))) { |
nothing calls this directly
no test coverage detected