MCPcopy Index your code
hub / github.com/codeaashu/claude-code / camelToSnakeCase

Function camelToSnakeCase

src/services/analytics/datadog.ts:85–87  ·  view source on GitHub ↗
(str: string)

Source from the content-addressed store, hash-verified

83]
84
85function camelToSnakeCase(str: string): string {
86 return str.replace(/[A-Z]/g, letter => `_${letter.toLowerCase()}`)
87}
88
89type DatadogLog = {
90 ddsource: string

Callers 1

trackDatadogEventFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected