()
| 13658 | } |
| 13659 | |
| 13660 | function recalculateCurrentTime() { |
| 13661 | // Subtract initial time so it fits inside 32bits |
| 13662 | mostRecentCurrentTimeMs = now() - originalStartTimeMs; |
| 13663 | mostRecentCurrentTime = msToExpirationTime(mostRecentCurrentTimeMs); |
| 13664 | return mostRecentCurrentTime; |
| 13665 | } |
| 13666 | |
| 13667 | function deferredUpdates(fn) { |
| 13668 | var previousExpirationContext = expirationContext; |
no test coverage detected