(code: number)
| 1474 | } |
| 1475 | |
| 1476 | function isPrefixEnd(code: number): boolean { |
| 1477 | return ( |
| 1478 | (code < chars.$a || chars.$z < code) && |
| 1479 | (code < chars.$A || chars.$Z < code) && |
| 1480 | (code < chars.$0 || code > chars.$9) |
| 1481 | ); |
| 1482 | } |
| 1483 | |
| 1484 | function isDigitEntityEnd(code: number): boolean { |
| 1485 | return code === chars.$SEMICOLON || code === chars.$EOF || !chars.isAsciiHexDigit(code); |
no outgoing calls
no test coverage detected
searching dependent graphs…