(start: number, stop?: number)
| 145 | } |
| 146 | |
| 147 | export function calcDuration(start: number, stop?: number): number { |
| 148 | return Math.round((stop ?? performance.now()) - start); |
| 149 | } |
| 150 | |
| 151 | export function countWeightedRefs(refs: CategoryRef[]) { |
| 152 | return refs |
no outgoing calls
no test coverage detected