tor-browser

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

shell.js (186B)


      1 // Add |Intl.MozDisplayNames| to the Intl object.
      2 function addMozIntlDisplayNames(global) {
      3  let obj = {};
      4  global.addIntlExtras(obj);
      5  global.Intl.DisplayNames = obj.DisplayNames;
      6 }