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

Function isDigit

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

Source from the content-addressed store, hash-verified

234}
235
236function isDigit(c: string): boolean {
237 return c >= '0' && c <= '9'
238}
239
240function isHexDigit(c: string): boolean {
241 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