()
| 79 | |
| 80 | let telemetryReporter: TelemetryReporter | undefined; |
| 81 | export function getTelemetryReporter(): TelemetryReporter { |
| 82 | if (telemetryReporter) { |
| 83 | return telemetryReporter; |
| 84 | } |
| 85 | return (telemetryReporter = new TelemetryReporter(AppinsightsKey)); |
| 86 | } |
| 87 | |
| 88 | function sanitizeProperties(eventName: string, data: Record<string, any>) { |
| 89 | let customProperties: Record<string, string> = {}; |
no outgoing calls
no test coverage detected