(s)
| 1556 | } |
| 1557 | |
| 1558 | function escapeHTML(s) { |
| 1559 | var n = s; |
| 1560 | n = n.replace(/&/g, '&'); |
| 1561 | n = n.replace(/</g, '<'); |
| 1562 | n = n.replace(/>/g, '>'); |
| 1563 | n = n.replace(/"/g, '"'); |
| 1564 | return n; |
| 1565 | } |
| 1566 | |
| 1567 | exports.Diff = Diff; |
| 1568 | exports.applyPatch = applyPatch; |
no outgoing calls
no test coverage detected