MCPcopy Create free account
hub / github.com/AnukarOP/claude-code-leaked / isKeyChar

Function isKeyChar

source code/utils/git/gitConfigParser.ts:272–279  ·  view source on GitHub ↗
(ch: string)

Source from the content-addressed store, hash-verified

270}
271
272function isKeyChar(ch: string): boolean {
273 return (
274 (ch >= 'a' && ch <= 'z') ||
275 (ch >= 'A' && ch <= 'Z') ||
276 (ch >= '0' && ch <= '9') ||
277 ch === '-'
278 )
279}

Callers 1

parseKeyValueFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected