UNPKG

drachtio-modesl

Version:

FreeSWITCH ESL Node.js Implementation

18 lines (15 loc) 343 B
var XML_ESCAPE_MAP = { '>': '&gt;', '<': '&lt;', '\'': '&apos;', '"': '&quot;', '&': '&amp;' }; module.exports = { encodeXml: function _encodeXml(string) { if (!string) return ''; return string.replace(/([&"<>\'])/g, function(str, item) { return XML_ESCAPE_MAP[item]; }); } };