We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ad44e1 commit ae347a5Copy full SHA for ae347a5
src/core/util/env.js
@@ -89,7 +89,7 @@ export const nextTick = (function () {
89
/* istanbul ignore if */ // $flow-disable-line
90
if (typeof Promise !== 'undefined' && isNative(Promise)) {
91
var p = Promise.resolve()
92
- var logError = err => { console.error(err) }
+ var logError = err => { handleError(err, null, 'nextTick') }
93
timerFunc = () => {
94
p.then(nextTickHandler).catch(logError)
95
// in problematic UIWebViews, Promise.then doesn't completely break, but
0 commit comments