drachtio-modesl
Version:
FreeSWITCH ESL Node.js Implementation
18 lines (15 loc) • 343 B
JavaScript
var XML_ESCAPE_MAP = {
'>': '>',
'<': '<',
'\'': ''',
'"': '"',
'&': '&'
};
module.exports = {
encodeXml: function _encodeXml(string) {
if (!string) return '';
return string.replace(/([&"<>\'])/g, function(str, item) {
return XML_ESCAPE_MAP[item];
});
}
};