MCPcopy Create free account
hub / github.com/freecodexyz/free-code / parseExporterTypes

Function parseExporterTypes

src/utils/telemetry/instrumentation.ts:7–14  ·  view source on GitHub ↗
(value: string | undefined)

Source from the content-addressed store, hash-verified

5export function bootstrapTelemetry(): void {}
6
7export 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
16export function isTelemetryEnabled(): boolean {
17 return false

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected