tor-browser

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

drain-job-queue-after-quit-called.js (213B)


      1 function d() {
      2    quit();
      3 }
      4 
      5 function bt() {
      6    getBacktrace({thisprops: true});
      7 }
      8 
      9 d.toString = bt.toString = drainJobQueue.toString = function () {
     10    if (this === bt)
     11        return '';
     12    this();
     13 }
     14 
     15 bt();