()
| 363 | } |
| 364 | |
| 365 | getSocksProxy() { |
| 366 | if (this.socksProxy) { |
| 367 | return this.socksProxy; |
| 368 | } |
| 369 | if (process.env.socks_proxy) { |
| 370 | return process.env.socks_proxy; |
| 371 | } |
| 372 | return undefined; |
| 373 | } |
| 374 | |
| 375 | // ------ Request Related Functions ------ // |
| 376 |
no outgoing calls
no test coverage detected