Profiling JavaScript Code
What type of performance visualization does this code generate?
const flamegraph = new FlameGraph();
flamegraph.start();
try {
recursiveFunction(depth);
} finally {
flamegraph.stop();
flamegraph.generateReport();
const flamegraph = new FlameGraph();
flamegraph.start();
try {
recursiveFunction(depth);
} finally {
flamegraph.stop();
flamegraph.generateReport();