(accountId)
| 104 | * Get effective proxy for an account (per-account takes priority over global). |
| 105 | */ |
| 106 | export function getEffectiveProxy(accountId) { |
| 107 | if (accountId && _config.perAccount[accountId]) { |
| 108 | return _config.perAccount[accountId]; |
| 109 | } |
| 110 | return _config.global; |
| 111 | } |
no outgoing calls
no test coverage detected