(message: PerfMessage)
| 36 | |
| 37 | /** sends a perf message to the monitor */ |
| 38 | export function sendInstrumentation(message: PerfMessage): void { |
| 39 | services.message(message); |
| 40 | } |
| 41 | |
| 42 | /** verifies that the instrumentation is loaded into the global namespace */ |
| 43 | export const isInstrumentationEnabled = !!(global as any).instrumentation; |
no outgoing calls
no test coverage detected