tor-browser

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

step-over-for-of.js (353B)


      1 var rollupBabel7StepOverForOf = (function () {
      2  'use strict';
      3 
      4  var vals = [1, 2];
      5  function root() {
      6    console.log("pause here");
      7 
      8    for (var _i = 0; _i < vals.length; _i++) {
      9      var val = vals[_i];
     10      console.log("pause again", val);
     11    }
     12 
     13    console.log("done");
     14  }
     15 
     16  return root;
     17 
     18 }());
     19 //# sourceMappingURL=step-over-for-of.js.map