tor-browser

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

bug599488.js (156B)


      1 /* Don't crash. */
      2 function foo(y) {
      3  var x = y;
      4  if (x != x)
      5    return true;
      6  return false;
      7 }
      8 assertEq(foo("three"), false);
      9 assertEq(foo(NaN), true);