tor-browser

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

bug1924062.js (178B)


      1 function a() {
      2  "use asm"
      3  function b() {}
      4  return b;
      5 }
      6 // asm.js module.
      7 try { disnative(a); } catch (e) {}
      8 // asm.js exported function.
      9 try { disnative(a()); } catch (e) {}