()
| 48175 | } |
| 48176 | } |
| 48177 | function refreshTimeout() { |
| 48178 | if (fastNowTimeout && fastNowTimeout.refresh) { |
| 48179 | fastNowTimeout.refresh(); |
| 48180 | } else { |
| 48181 | clearTimeout(fastNowTimeout); |
| 48182 | fastNowTimeout = setTimeout(onTimeout, 1e3); |
| 48183 | if (fastNowTimeout.unref) { |
| 48184 | fastNowTimeout.unref(); |
| 48185 | } |
| 48186 | } |
| 48187 | } |
| 48188 | var Timeout = class { |
| 48189 | constructor(callback, delay3, opaque) { |
| 48190 | this.callback = callback; |
no test coverage detected
searching dependent graphs…