tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

url-constants.js (251B)


      1 // The file including this must also include ../constants.sub.js to pick up the
      2 // necessary constants.
      3 
      4 const {BASEURL, ECHOURL} = (() => {
      5  const BASEURL = SCHEME_DOMAIN_PORT;
      6  const ECHOURL = `${BASEURL}/echo`;
      7  return {BASEURL, ECHOURL};
      8 })();