(s: string)
| 643 | } |
| 644 | |
| 645 | private static _dereferenceEntities(s: string): string { |
| 646 | s = String(s); |
| 647 | if (s.length > 3 && s.indexOf('&') !== -1) { |
| 648 | s = s.replace(_entitySearchRegEx, _HandleAmpEntities); |
| 649 | } |
| 650 | |
| 651 | return s; |
| 652 | } |
| 653 | } |
no test coverage detected