()
| 563 | } |
| 564 | |
| 565 | export function recordRenderTime(): void { |
| 566 | if (!enableProfilerTimer || !enableComponentPerformanceTrack) { |
| 567 | return; |
| 568 | } |
| 569 | renderStartTime = now(); |
| 570 | } |
| 571 | |
| 572 | export function recordCommitTime(): void { |
| 573 | if (!enableProfilerTimer) { |
no test coverage detected