(err)
| 467 | if (typeof Promise !== 'undefined' && isNative(Promise)) { |
| 468 | var p = Promise.resolve(); |
| 469 | var logError = function (err) { console.error(err); }; |
| 470 | timerFunc = function () { |
| 471 | p.then(nextTickHandler).catch(logError); |
| 472 | // in problematic UIWebViews, Promise.then doesn't completely break, but |
nothing calls this directly
no outgoing calls
no test coverage detected