()
| 5 | [label: string]: unknown; |
| 6 | |
| 7 | constructor() { |
| 8 | Object.defineProperties(this, { |
| 9 | startTimes: { value: {} }, |
| 10 | }) |
| 11 | } |
| 12 | |
| 13 | time(label: string): void { |
| 14 | this.startTimes[label] = process.hrtime() |
nothing calls this directly
no outgoing calls
no test coverage detected