tor-browser

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

string-compare.js (132B)


      1 function f(a, b) {
      2    return a == b;
      3 }
      4 
      5 var X = "" + Math.random();
      6 var Y = "" + Math.random();
      7 
      8 assertEq(f(X + Y, X + Y), true);