(c: string)
| 232 | } |
| 233 | |
| 234 | function isDigit(c: string): boolean { |
| 235 | return c >= '0' && c <= '9' |
| 236 | } |
| 237 | |
| 238 | function isHexDigit(c: string): boolean { |
| 239 | return isDigit(c) || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F') |
no outgoing calls
no test coverage detected