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