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