Nobuhito Kurose
Nobuhito Kurose
See this post. http://www.cocos2d-x.org/boards/18/topics/29755
I got the same error. It should be "await mixpanel.init();" because the init function is an async function.
I have a question regarding the implementation of `initializationCompletePromise()` in `MixpanelPersistent`. Currently, the method is defined as: ``` async initializationCompletePromise(token) { Promise.all([ this.loadIdentity(token), this.loadSuperProperties(token), this.loadTimeEvents(token), this.loadOptOut(token), this.loadAppHasOpenedBefore(token), ]); } ```...