(config: GlobalConfig)
| 8 | export { isNativeBinaryInstall }; |
| 9 | |
| 10 | export function isAutoUpdateEnabled(config: GlobalConfig): boolean { |
| 11 | return config.updates?.auto === true; |
| 12 | } |
| 13 | |
| 14 | export function hasAutoUpdatePreference(config: GlobalConfig): boolean { |
| 15 | return typeof config.updates?.auto === 'boolean'; |
no outgoing calls
no test coverage detected