]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - proxy.ts
8b82ccae066cdf28468601c141524afcc6a1b659
[github/Chocobozzz/PeerTube.git] / proxy.ts
1 function getProxy () {
2 return process.env.HTTPS_PROXY ||
3 process.env.HTTP_PROXY ||
4 undefined
5 }
6
7 function isProxyEnabled () {
8 return !!getProxy()
9 }
10
11 export {
12 getProxy,
13 isProxyEnabled
14 }