tor-browser

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

bug773587.js (218B)


      1 StrictEquality(true, new Boolean(true), false, 0);
      2 function StrictEquality(x, y, expect, i) {
      3    result = ( x === y );
      4    if (i < 100)
      5        StrictEquality(y.environment !== Set.environment, true, false, i + 1);
      6 }