Make Analytics API non-async

This commit is contained in:
fragosti
2018-07-12 16:57:03 -07:00
parent 0941e0a929
commit 1df074b73e
13 changed files with 44 additions and 71 deletions

View File

@@ -318,7 +318,7 @@ export const utils = {
resolve();
return;
}
window.onload = () => resolve();
window.onload = resolve;
}),
getProviderType(provider: Provider): Providers | string {
const constructorName = provider.constructor.name;