(entitySrc: string)
| 129 | } |
| 130 | |
| 131 | function _unknownEntityErrorMsg(entitySrc: string): string { |
| 132 | return `Unknown entity "${entitySrc}" - use the "&#<decimal>;" or "&#x<hex>;" syntax`; |
| 133 | } |
| 134 | |
| 135 | function _unparsableEntityErrorMsg(type: CharacterReferenceType, entityStr: string): string { |
| 136 | return `Unable to parse entity "${entityStr}" - ${type} character reference entities must end with ";"`; |
no outgoing calls
no test coverage detected
searching dependent graphs…