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