1
0
Fork 0
peertube/server/core/helpers/proxy.ts
2023-10-04 15:13:25 +02:00

14 lines
210 B
TypeScript

function getProxy () {
return process.env.HTTPS_PROXY ||
process.env.HTTP_PROXY ||
undefined
}
function isProxyEnabled () {
return !!getProxy()
}
export {
getProxy,
isProxyEnabled
}