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

Function isDigit

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

Source from the content-addressed store, hash-verified

232}
233
234function isDigit(c: string): boolean {
235 return c >= '0' && c <= '9'
236}
237
238function isHexDigit(c: string): boolean {
239 return isDigit(c) || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F')

Callers 11

isHexDigitFunction · 0.85
nextTokenFunction · 0.85
isRedirectLiteralStartFunction · 0.85
tryParseRedirectFunction · 0.85
tryParseBraceExprFunction · 0.85
parseDoubleQuotedFunction · 0.85
parseDollarLikeFunction · 0.85
parseExpansionBodyFunction · 0.85
parseExpansionRestFunction · 0.85
parseArithUnaryFunction · 0.85
parseArithPrimaryFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected