(text)
| 54 | } |
| 55 | |
| 56 | function escapeColor(text) { |
| 57 | return text.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">"); |
| 58 | } |
| 59 | |
| 60 | function unescapeColor(text) { |
| 61 | return text.replace(/>/g, ">").replace(/</g, "<").replace(/&/g, "&"); |
no outgoing calls
no test coverage detected