2024-12-23 02:16:48 -06:00
|
|
|
export function getProxy () {
|
2021-08-25 08:08:37 -05:00
|
|
|
return process.env.HTTPS_PROXY ||
|
|
|
|
process.env.HTTP_PROXY ||
|
|
|
|
undefined
|
|
|
|
}
|
|
|
|
|
2024-12-23 02:16:48 -06:00
|
|
|
export function isProxyEnabled () {
|
2021-08-25 08:08:37 -05:00
|
|
|
return !!getProxy()
|
|
|
|
}
|