We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c54a693 commit afc8233Copy full SHA for afc8233
addon/addon/waiter-manager.ts
@@ -33,7 +33,6 @@ function getGlobal(): Indexable {
33
if (typeof globalThis !== 'undefined') return indexable(globalThis);
34
if (typeof self !== 'undefined') return indexable(self);
35
if (typeof window !== 'undefined') return indexable(window);
36
- if (typeof global !== 'undefined') return indexable(global);
37
38
throw new Error('unable to locate global object');
39
}
0 commit comments