tor-browser

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

for-of.js (270B)


      1 var rollupForOf = (function () {
      2  'use strict';
      3 
      4  function forOf() {
      5    for (const x of [1]) {
      6      doThing(x);
      7    }
      8 
      9    function doThing(arg) {
     10      // Avoid optimize out
     11      window.console;
     12    }
     13  }
     14 
     15  return forOf;
     16 
     17 }());
     18 //# sourceMappingURL=for-of.js.map