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