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