(...args: unknown[])
| 40 | import { parseProxyResponse } from './parse-proxy-response'; |
| 41 | |
| 42 | function debugLog(...args: unknown[]): void { |
| 43 | debug.log('[https-proxy-agent]', ...args); |
| 44 | } |
| 45 | |
| 46 | type Protocol<T> = T extends `${infer Protocol}:${infer _}` ? Protocol : never; |
| 47 |
no test coverage detected