(version: string | null | undefined)
| 44 | } |
| 45 | |
| 46 | function normalizeVersion(version: string | null | undefined): string { |
| 47 | return typeof version === 'string' ? version.trim() : '' |
| 48 | } |
| 49 | |
| 50 | function formatDesktopDataDirCompatibilityError(error: DataDirCompatibilityError, runtime: RuntimeIdentity): string { |
| 51 | return [ |
no outgoing calls
no test coverage detected