tor-browser

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

catch-overflow-regexp.js (97B)


      1 function test() {
      2    try {
      3        test();
      4    } catch {
      5        /a/.test("a");
      6    }
      7 }
      8 test();