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 a11d6f3 commit 069c82bCopy full SHA for 069c82b
src/core/util/next-tick.js
@@ -50,13 +50,14 @@ if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {
50
port.postMessage(1)
51
}
52
} else {
53
+ /* istanbul ignore next */
54
macroTimerFunc = () => {
55
setTimeout(flushCallbacks, 0)
56
57
58
59
// Determine MicroTask defer implementation.
-// $flow-disable-line, istanbul ignore next
60
+/* istanbul ignore next, $flow-disable-line */
61
if (typeof Promise !== 'undefined' && isNative(Promise)) {
62
const p = Promise.resolve()
63
microTimerFunc = () => {
0 commit comments