We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d69e5fa commit b9cd642Copy full SHA for b9cd642
packages/angular/polyfills/src/index.ts
@@ -30,3 +30,7 @@ const polyfilledPerformance = getPerformanceObject();
30
for (const key in polyfilledPerformance) {
31
global.performance[key] ??= polyfilledPerformance[key];
32
}
33
+
34
+if (typeof queueMicrotask === 'undefined') {
35
+ global.queueMicrotask = (cb) => Promise.resolve().then(cb);
36
+}
0 commit comments