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