()
| 12753 | } |
| 12754 | |
| 12755 | function recalculateCurrentTime() { |
| 12756 | // Subtract initial time so it fits inside 32bits |
| 12757 | mostRecentCurrentTimeMs = now() - originalStartTimeMs; |
| 12758 | mostRecentCurrentTime = msToExpirationTime(mostRecentCurrentTimeMs); |
| 12759 | return mostRecentCurrentTime; |
| 12760 | } |
| 12761 | |
| 12762 | function deferredUpdates(fn) { |
| 12763 | var previousExpirationContext = expirationContext; |
no test coverage detected