tor-browser

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

bug1741635-1.js (152B)


      1 function foo() {}
      2 
      3 var i;
      4 function c(x, ...rest) {
      5  for (i = 0; i < rest.length; i++)
      6    foo(rest[i])
      7 }
      8 
      9 for (var j = 0; j < 100; j++) {
     10  c(0, 0);
     11 }