wazuh-kibana-app/node_modules/xml-escape/index.js

15 lines
282 B
JavaScript
Raw Normal View History

2016-06-29 01:43:18 +00:00
var escape = module.exports = function escape(string) {
return string.replace(/([&"<>'])/g, function(str, item) {
return escape.map[item];
})
}
var map = escape.map = {
'>': '&gt;'
, '<': '&lt;'
, "'": '&apos;'
, '"': '&quot;'
, '&': '&amp;'
}