()
| 449 | var timerFunc; |
| 450 | |
| 451 | function nextTickHandler () { |
| 452 | pending = false; |
| 453 | var copies = callbacks.slice(0); |
| 454 | callbacks.length = 0; |
| 455 | for (var i = 0; i < copies.length; i++) { |
| 456 | copies[i](); |
| 457 | } |
| 458 | } |
| 459 | |
| 460 | // the nextTick behavior leverages the microtask queue, which can be accessed |
| 461 | // via either native Promise.then or MutationObserver. |
nothing calls this directly
no outgoing calls
no test coverage detected