(text)
| 77 | } |
| 78 | |
| 79 | export function encodeHTML(text) { |
| 80 | return String(text) |
| 81 | .replace(/&/g, '&') |
| 82 | .replace(/</g, '<') |
| 83 | .replace(/>/g, '>') |
| 84 | .replace(/"/g, '"') |
| 85 | .replace(/'/g, ''') |
| 86 | .replace(/\//g, '/'); |
| 87 | } |
| 88 | |
| 89 | function decodeHTML(html) { |
| 90 | return String(html) |
no outgoing calls
no test coverage detected