tor-browser

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

bug582392.js (125B)


      1 function cmp(x, y) {
      2  if (x < y)
      3    return -1;
      4  if (x > y)
      5    return 1;
      6  return 0;
      7 }
      8 assertEq(cmp('true', 'false'), 1);