export default { htmlEscape: text => { return text.replace(/[<>"&]/g, function(match, pos, originalText) { switch (match) { case '<': return '<' case '>': return '>' case '&': return '&' case '"': return '"' } }) } }