tor-browser

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

arrays-slow-4.js (104B)


      1 // for-of on an empty slow array does nothing.
      2 
      3 var a = [];
      4 a.slow = true;
      5 for (var x of a)
      6    fail();