tor-browser

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

optimize-globals-1.js (165B)


      1 function testLocalNames() {
      2    var NaN = 4;
      3    var undefined = 5;
      4    var Infinity = 6;
      5    return NaN + undefined + Infinity;
      6 }
      7 assertEq(testLocalNames(), 15);