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