()
| 12881 | } |
| 12882 | |
| 12883 | function recalculateCurrentTime() { |
| 12884 | // Subtract initial time so it fits inside 32bits |
| 12885 | mostRecentCurrentTimeMs = now() - originalStartTimeMs; |
| 12886 | mostRecentCurrentTime = msToExpirationTime(mostRecentCurrentTimeMs); |
| 12887 | return mostRecentCurrentTime; |
| 12888 | } |
| 12889 | |
| 12890 | function deferredUpdates(fn) { |
| 12891 | var previousExpirationContext = expirationContext; |
no test coverage detected