(event, instance = null, eventFn)
| 53 | * The value depends on the execution context |
| 54 | */ |
| 55 | export const profiler: Profiler = function (event, instance = null, eventFn): void { |
| 56 | for (let i = 0; i < profilerCallbacks.length; i++) { |
| 57 | const profilerCallback = profilerCallbacks[i]; |
| 58 | profilerCallback(event, instance, eventFn); |
| 59 | } |
| 60 | }; |
no outgoing calls
no test coverage detected
searching dependent graphs…