Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/liuup/claude-code-analysis
/ isKeyChar
Function
isKeyChar
src/utils/git/gitConfigParser.ts:270–277 ·
view source on GitHub ↗
(ch: string)
Source
from the content-addressed store, hash-verified
268
}
269
270
function
isKeyChar(ch: string): boolean {
271
return
(
272
(ch >=
'a'
&& ch <=
'z'
) ||
273
(ch >=
'A'
&& ch <=
'Z'
) ||
274
(ch >=
'0'
&& ch <=
'9'
) ||
275
ch ===
'-'
276
)
277
}
Callers
1
parseKeyValue
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected