(value: string | undefined)
| 66 | } |
| 67 | |
| 68 | function isTruthyEnv(value: string | undefined): boolean { |
| 69 | return value === '1' || value === 'true' || value === 'yes' |
| 70 | } |
| 71 | |
| 72 | export function isFullTelemetryEnabled(params: { |
| 73 | distinctId?: string |
no outgoing calls
no test coverage detected