(operation: string)
| 233 | private startTimes = new Map<string, number>(); |
| 234 | |
| 235 | startTimer(operation: string): void { |
| 236 | this.startTimes.set(operation, performance.now()); |
| 237 | } |
| 238 | |
| 239 | endTimer(operation: string, logThreshold = 100): number { |
| 240 | const startTime = this.startTimes.get(operation); |
no test coverage detected