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

Function isHexDigit

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

Source from the content-addressed store, hash-verified

238}
239
240function isHexDigit(c: string): boolean {
241 return isDigit(c) || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F')
242}
243
244function isBaseDigit(c: string): boolean {
245 // 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