tor-browser

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

get-backtrace-in-constructing-bound-function.js (85B)


      1 function t() {
      2    getBacktrace({ locals: true });
      3 }
      4 var f = t.bind();
      5 new f();
      6 f();