UNPKG

drachtio-modesl

Version:

FreeSWITCH ESL Node.js Implementation

16 lines (13 loc) 287 B
const XML_ESCAPE_MAP = { '>': '&gt;', '<': '&lt;', '\'': '&apos;', '"': '&quot;', '&': '&amp;' }; module.exports = { encodeXml(string) { if (!string) return ''; return string.replace(/([&"<>\'])/g, (str, item) => XML_ESCAPE_MAP[item]); } };