Represents a single entry in the benchmark suite.

interface BenchmarkEntry {
    fn: (() => any);
    name: string;
}

Properties

Properties

fn: (() => any)

Function to be benchmarked

name: string

Name of the benchmark