()
| 13520 | } |
| 13521 | |
| 13522 | function recalculateCurrentTime() { |
| 13523 | // Subtract initial time so it fits inside 32bits |
| 13524 | mostRecentCurrentTimeMs = now() - originalStartTimeMs; |
| 13525 | mostRecentCurrentTime = msToExpirationTime(mostRecentCurrentTimeMs); |
| 13526 | return mostRecentCurrentTime; |
| 13527 | } |
| 13528 | |
| 13529 | function deferredUpdates(fn) { |
| 13530 | var previousExpirationContext = expirationContext; |
no test coverage detected