(str)
| 2538 | } |
| 2539 | |
| 2540 | function replaceEntities(str) { |
| 2541 | if (str.indexOf('&') < 0) { return str; } |
| 2542 | |
| 2543 | return str.replace(NAMED_ENTITY_RE, replaceEntityPattern); |
| 2544 | } |
| 2545 | |
| 2546 | //////////////////////////////////////////////////////////////////////////////// |
| 2547 |
no outgoing calls
no test coverage detected
searching dependent graphs…