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

Function isIdentStart

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

Source from the content-addressed store, hash-verified

226}
227
228function isIdentStart(c: string): boolean {
229 return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || c === '_'
230}
231
232function isIdentChar(c: string): boolean {
233 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