Chocobozzz/PeerTube

View on GitHub
server/core/helpers/proxy.ts

Summary

Maintainability
A
0 mins
Test Coverage
function getProxy () {
  return process.env.HTTPS_PROXY ||
         process.env.HTTP_PROXY ||
         undefined
}

function isProxyEnabled () {
  return !!getProxy()
}

export {
  getProxy,
  isProxyEnabled
}