(deps?: AnalyticsDeps)
| 111 | |
| 112 | /** Reset analytics state - for testing only */ |
| 113 | export function resetAnalyticsState(deps?: AnalyticsDeps) { |
| 114 | anonymousId = undefined |
| 115 | currentUserId = undefined |
| 116 | client = undefined |
| 117 | injectedDeps = deps |
| 118 | identified = false |
| 119 | } |
| 120 | |
| 121 | export let identified: boolean = false |
| 122 | let analyticsErrorLogger: AnalyticsErrorLogger | undefined |
no outgoing calls
no test coverage detected