mirror of
https://github.com/valitydev/wazuh-kibana-app.git
synced 2024-11-07 02:15:24 +00:00
15 lines
282 B
JavaScript
15 lines
282 B
JavaScript
|
|
|
|
var escape = module.exports = function escape(string) {
|
|
return string.replace(/([&"<>'])/g, function(str, item) {
|
|
return escape.map[item];
|
|
})
|
|
}
|
|
|
|
var map = escape.map = {
|
|
'>': '>'
|
|
, '<': '<'
|
|
, "'": '''
|
|
, '"': '"'
|
|
, '&': '&'
|
|
} |