tor-browser

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

bug1942737.js (159B)


      1 const ta = new Int32Array(4);
      2 for (let i = 0; i < 100; ++i) {
      3  let index = i & 3;
      4  let f32Index = Math.fround(index);
      5  assertEq(ta[f32Index], ta[index]);
      6 }