tor-browser

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

bug1132290.js (162B)


      1 f = function() {
      2    v = new Uint8Array()
      3        function f(x) {
      4            return x + v[0] | 0
      5        }
      6    return f
      7 }()
      8 assertEq(f(0), 0)
      9 assertEq(f(1), 0)