(mark: string)
| 16 | * |
| 17 | */ |
| 18 | export const markStep = (mark: string) => { |
| 19 | if (!isPerformanceSupported()) { |
| 20 | return; |
| 21 | } |
| 22 | WP.mark(M + mark); |
| 23 | measureSteps(mark); |
| 24 | }; |
| 25 | |
| 26 | // --------------------- TMP Location Before Deprecation ----------------- |
| 27 | // For start(), end(), clear() |
no test coverage detected