UNPKG

data-structure-typed

Version:
8 lines (6 loc) 207 B
import { performance } from 'perf_hooks'; export const calcRunTime = (callback: (...args: any[]) => any) => { const startTime = performance.now(); callback(); return performance.now() - startTime; };