Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
230
function
isIdentChar(c: string): boolean {
231
return
isIdentStart(c) || (c >=
'0'
&& c <=
'9'
)
232
}
233
234
function
isDigit(c: string): boolean {
235
return
c >=
'0'
&& c <=
'9'
Callers
8
isBaseDigit
Function · 0.85
tryParseAssignment
Function · 0.85
tryParseRedirect
Function · 0.85
parseDollarLike
Function · 0.85
parseExpansionBody
Function · 0.85
parseTestNegatablePrimary
Function · 0.85
parseTestBinary
Function · 0.85
parseArithPrimary
Function · 0.85
Calls
1
isIdentStart
Function · 0.85
Tested by
no test coverage detected