(cachedLatest?: string)
| 74 | } |
| 75 | |
| 76 | function fallbackResult(cachedLatest?: string): UpdateCheckResult { |
| 77 | return { |
| 78 | current: VERSION, |
| 79 | latest: cachedLatest ?? VERSION, |
| 80 | updateAvailable: cachedLatest ? isNewerSemver(cachedLatest, VERSION) : false, |
| 81 | }; |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Synchronous read from cache — for _meta envelope on --json commands. |
no test coverage detected