| 1 | import { URL } from 'node:url' |
| 2 | |
| 3 | interface ProxyParserResult { |
| 4 | protocol: string | null |
| 5 | auth?: { |
| 6 | username?: string |
| 7 | password?: string |
| 8 | } |
| 9 | host: string |
| 10 | port: number | null |
| 11 | } |
| 12 | |
| 13 | export class ProxyParser { |
| 14 | parse(_url: string): ProxyParserResult { |
nothing calls this directly
no outgoing calls
no test coverage detected