(target, key, context = kEmptyObject)
| 544 | |
| 545 | |
| 546 | function startPerf(target, key, context = kEmptyObject) { |
| 547 | target[key] = { |
| 548 | ...context, |
| 549 | startTime: now(), |
| 550 | }; |
| 551 | } |
| 552 | |
| 553 | function stopPerf(target, key, context = kEmptyObject) { |
| 554 | const ctx = target[key]; |
no test coverage detected
searching dependent graphs…