tor-browser

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

doc_big_tree.html (369B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8"/>
      5  </head>
      6  <body>
      7    <script>
      8      "use strict";
      9 
     10      window.big = (function makeBig(depth = 0) {
     11        let big = Array(5);
     12        big.fill(undefined);
     13        if (depth < 5) {
     14          big = big.map(_ => makeBig(depth + 1));
     15        }
     16        return big;
     17      }());
     18    </script>
     19  </body>
     20 </html>