MCPcopy Index your code
hub / github.com/codeaashu/claude-code / isIdentChar

Function isIdentChar

src/utils/bash/bashParser.ts:230–232  ·  view source on GitHub ↗
(c: string)

Source from the content-addressed store, hash-verified

228}
229
230function isIdentChar(c: string): boolean {
231 return isIdentStart(c) || (c >= '0' && c <= '9')
232}
233
234function isDigit(c: string): boolean {
235 return c >= '0' && c <= '9'

Callers 8

isBaseDigitFunction · 0.85
tryParseAssignmentFunction · 0.85
tryParseRedirectFunction · 0.85
parseDollarLikeFunction · 0.85
parseExpansionBodyFunction · 0.85
parseTestBinaryFunction · 0.85
parseArithPrimaryFunction · 0.85

Calls 1

isIdentStartFunction · 0.85

Tested by

no test coverage detected