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 ee1d340 commit 028f88dCopy full SHA for 028f88d
packages/angular/polyfills/src/index.ts
@@ -36,11 +36,13 @@ if (typeof queueMicrotask === 'undefined') {
36
global.queueMicrotask = (cb) => Promise.resolve().then(cb);
37
}
38
39
-if (typeof AbortController === 'undefined') {
+if (typeof global.AbortController === 'undefined') {
40
+ // @ts-ignore
41
global.AbortController = AbortController;
42
43
-if (typeof AbortSignal === 'undefined') {
44
+if (typeof global.AbortSignal === 'undefined') {
45
46
global.AbortSignal = AbortSignal;
47
48
0 commit comments