@compas/cli
Version:
CLI containing utilities and simple script runner
13 lines (12 loc) • 395 B
TypeScript
/**
* Wraps `mainFn` and starts the benchmark runner if not already started.
* By calling this in your bench files, it allows the benchmark file to be directly executed
* via `node file.bench.js`. When the runner is already active, this function will be a no
* op.
*
* @since 0.1.0
*
* @param {ImportMeta} meta
* @returns {void}
*/
export function mainBenchFn(meta: ImportMeta): void;