(char)
| 221 | // The below is a mini-parser that reads backwards from the end of the string. |
| 222 | |
| 223 | function charCode(char) { return char.charCodeAt(0); } |
| 224 | function isAlphaNumeric(code) { |
| 225 | return (charCode("0") <= code && code <= charCode("9")) || |
| 226 | (charCode("A") <= code && code <= charCode("Z")) || |
no outgoing calls
no test coverage detected
searching dependent graphs…