MCPcopy Index your code
hub / github.com/claude-code-best/claude-code / isBaseDigit

Function isBaseDigit

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

Source from the content-addressed store, hash-verified

240}
241
242function isBaseDigit(c: string): boolean {
243 // Bash BASE#DIGITS: digits, letters, @ and _ (up to base 64)
244 return isIdentChar(c) || c === '@'
245}
246
247/**
248 * Unquoted heredoc delimiter chars. Bash accepts most non-metacharacters —

Callers 1

parseArithPrimaryFunction · 0.85

Calls 1

isIdentCharFunction · 0.85

Tested by

no test coverage detected