(c: string)
| 240 | } |
| 241 | |
| 242 | function 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 — |
no test coverage detected