Files
basilisk55/devtools/client/memory/test/browser/doc_big_tree.html
T

18 lines
322 B
HTML

<!DOCTYPE html>
<html>
<body>
<script>
"use strict";
window.big = (function makeBig(depth = 0) {
let big = Array(5);
big.fill(undefined);
if (depth < 5) {
big = big.map(_ => makeBig(depth + 1));
}
return big;
}());
</script>
</body>
</html>