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

Function isHexDigit

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

Source from the content-addressed store, hash-verified

236}
237
238function isHexDigit(c: string): boolean {
239 return isDigit(c) || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F')
240}
241
242function isBaseDigit(c: string): boolean {
243 // Bash BASE#DIGITS: digits, letters, @ and _ (up to base 64)

Callers 1

parseArithPrimaryFunction · 0.85

Calls 1

isDigitFunction · 0.85

Tested by

no test coverage detected