(code)
| 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")) || |
| 227 | (charCode("a") <= code && code <= charCode("z")); |
| 228 | } |
| 229 | |
| 230 | const MATCH_SUBTAG = 0; |
| 231 | const MATCH_SINGLETON_OR_SUBTAG = 1; |
no test coverage detected