()
| 104 | } |
| 105 | |
| 106 | function shouldRunSyncCleanup(): boolean { |
| 107 | try { |
| 108 | return getPlatformService().isDesktop; |
| 109 | } catch (err) { |
| 110 | console.warn("[Sync] Failed to check platform for sync cleanup:", err); |
| 111 | return false; |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | const tableColumnCache = new Map<string, Set<string>>(); |
| 116 |
no test coverage detected