tor-browser

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

bitwiseGlobal.js (141B)


      1 bitwiseAndValue = Math.pow(2,32);
      2 for (var i = 0; i < 60000; i++)
      3  bitwiseAndValue = bitwiseAndValue & i;
      4 
      5 assertEq(bitwiseAndValue, 0);