(charCode: number)
| 124 | const _CR_OR_CRLF_REGEXP = /\r\n?/g; |
| 125 | |
| 126 | function _unexpectedCharacterErrorMsg(charCode: number): string { |
| 127 | const char = charCode === chars.$EOF ? 'EOF' : String.fromCharCode(charCode); |
| 128 | return `Unexpected character "${char}"`; |
| 129 | } |
| 130 | |
| 131 | function _unknownEntityErrorMsg(entitySrc: string): string { |
| 132 | return `Unknown entity "${entitySrc}" - use the "&#<decimal>;" or "&#x<hex>;" syntax`; |
no outgoing calls
no test coverage detected
searching dependent graphs…