MCPcopy Index your code
hub / github.com/codeaashu/claude-code / 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
270function 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}
278

Callers 1

parseKeyValueFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected