(c4)
| 3444 | return isASCIIAlpha(c4) || isASCIIDigit(c4); |
| 3445 | } |
| 3446 | function isASCIIHex(c4) { |
| 3447 | return isASCIIDigit(c4) || c4 >= 65 && c4 <= 70 || c4 >= 97 && c4 <= 102; |
| 3448 | } |
| 3449 | module2.exports = { |
| 3450 | isASCIIDigit, |
| 3451 | isASCIIAlpha, |
no test coverage detected
searching dependent graphs…