We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ea7835 commit 94561ccCopy full SHA for 94561cc
src/watch.ts
@@ -25,7 +25,7 @@ export class Watch {
25
callback: (phase: string, apiObj: any, watchObj?: any) => void,
26
done: (err: any) => void,
27
): Promise<AbortController> {
28
- const AbortControllerCtor = globalThis.AbortController || (await import('abort-controller'));
+ const AbortControllerCtor = globalThis.AbortController || (await import('abort-controller')).AbortController;
29
30
const cluster = this.config.getCurrentCluster();
31
if (!cluster) {
0 commit comments