mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-20 11:48:31 -06:00
15 lines
210 B
TypeScript
15 lines
210 B
TypeScript
function getProxy () {
|
|
return process.env.HTTPS_PROXY ||
|
|
process.env.HTTP_PROXY ||
|
|
undefined
|
|
}
|
|
|
|
function isProxyEnabled () {
|
|
return !!getProxy()
|
|
}
|
|
|
|
export {
|
|
getProxy,
|
|
isProxyEnabled
|
|
}
|