tor-browser

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

bug1647293.js (209B)


      1 function f() {
      2    var i = 0;
      3    while (i != 3000) {
      4        if (typeof i !== "number") {
      5            var x = i || 8;
      6        }
      7        var next = i + 1;
      8        i = arguments;
      9        i = next;
     10    }
     11 }
     12 f();