()
| 13555 | } |
| 13556 | |
| 13557 | function recalculateCurrentTime() { |
| 13558 | // Subtract initial time so it fits inside 32bits |
| 13559 | mostRecentCurrentTimeMs = now() - originalStartTimeMs; |
| 13560 | mostRecentCurrentTime = msToExpirationTime(mostRecentCurrentTimeMs); |
| 13561 | return mostRecentCurrentTime; |
| 13562 | } |
| 13563 | |
| 13564 | function deferredUpdates(fn) { |
| 13565 | var previousExpirationContext = expirationContext; |
no test coverage detected