tor-browser

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

testOverRecursed4.js (240B)


      1 function tryItOut(code) {
      2    f = eval("(function(){" + code + "})")
      3    try {
      4        f()
      5    } catch (e) {}
      6 }
      7 tryItOut("x=7");
      8 tryItOut("\"use strict\";for(d in[x=arguments]){}");
      9 tryItOut("for(v in((Object.seal)(x)));x.length=Function")