()
| 29 | } |
| 30 | |
| 31 | function getHomeDirectory() { |
| 32 | return process.env.HOME || homedir() |
| 33 | } |
| 34 | |
| 35 | function isTelemetryConfig(value: unknown): value is TelemetryConfig { |
| 36 | if (!value || typeof value !== 'object') { |
no outgoing calls
no test coverage detected