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

Function isIdentStart

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

Source from the content-addressed store, hash-verified

224}
225
226function isIdentStart(c: string): boolean {
227 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c === '_'
228}
229
230function isIdentChar(c: string): boolean {
231 return isIdentStart(c) || (c >= '0' && c <= '9')

Callers 12

isIdentCharFunction · 0.85
tryParseAssignmentFunction · 0.85
tryParseBraceExprFunction · 0.85
parseDoubleQuotedFunction · 0.85
parseDollarLikeFunction · 0.85
parseExpansionBodyFunction · 0.85
parseExpansionRestFunction · 0.85
parseDeclarationFunction · 0.85
parseTestBinaryFunction · 0.85
parseTestExtglobRhsFunction · 0.85
parseArithPrimaryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected