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