* Reset FastTimers. * Exported for testing purposes only. * Marking as deprecated to discourage any use outside of testing. * @deprecated
()
| 2634 | * @deprecated |
| 2635 | */ |
| 2636 | reset() { |
| 2637 | fastNow = 0; |
| 2638 | fastTimers.length = 0; |
| 2639 | clearTimeout(fastNowTimeout); |
| 2640 | fastNowTimeout = null; |
| 2641 | }, |
| 2642 | /** |
| 2643 | * Exporting for testing purposes only. |
| 2644 | * Marking as deprecated to discourage any use outside of testing. |
nothing calls this directly
no test coverage detected