Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/MoonshotAI/kimi-code
/ camelToSnake
Function
camelToSnake
apps/kimi-code/src/cli/sub/doctor.ts:340–342 ·
view source on GitHub ↗
(value: string)
Source
from the content-addressed store, hash-verified
338
}
339
340
function
camelToSnake(value: string): string {
341
return
value.replaceAll(/[A-Z]/g, (ch) => `_${ch.toLowerCase()}`);
342
}
Callers
1
formatIssuePath
Function · 0.70
Calls
no outgoing calls
Tested by
no test coverage detected