(value: string | undefined)
| 5 | export function bootstrapTelemetry(): void {} |
| 6 | |
| 7 | export function parseExporterTypes(value: string | undefined): string[] { |
| 8 | return (value || '') |
| 9 | .trim() |
| 10 | .split(',') |
| 11 | .filter(Boolean) |
| 12 | .map(token => token.trim()) |
| 13 | .filter(token => token !== 'none') |
| 14 | } |
| 15 | |
| 16 | export function isTelemetryEnabled(): boolean { |
| 17 | return false |
nothing calls this directly
no outgoing calls
no test coverage detected