Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
Indexed
MCP
copy
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
85
function
camelToSnakeCase(str: string): string {
86
return
str.replace(/[A-Z]/g, letter => `_${letter.toLowerCase()}`)
87
}
88
89
type
DatadogLog = {
90
ddsource: string
Callers
1
trackDatadogEvent
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected