(traits = {})
| 91 | |
| 92 | |
| 93 | async identify (traits = {}) { |
| 94 | try { |
| 95 | await this.initializationComplete |
| 96 | |
| 97 | await allSettled( |
| 98 | this.trackers.map(t => t.identify(traits)) |
| 99 | ) |
| 100 | } catch (e) { |
| 101 | this.log('identify call failed', e) |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | async resetIdentity () { |
| 106 | try { |
no test coverage detected