zZzzZ.
home2
/
zrzvbdry
/
public_html
/
wp-content
/
plugins
/
wordpress-popular-posts
/
src
/
Block
New Folder
Editing: utils.js
Save
Cancel
export function escape_html(value) { const map = { '&': '&', '<': '<', '>': '>', '"': '"', "'": ''', "/": '/', '`': '`', }; const reg = /[&<>"'/]/ig; return value.replace(reg, (match)=>(map[match])); } export function unescape_html(value) { var div = document.createElement('div'); div.innerHTML = value; var child = div.childNodes[0]; return child ? child.nodeValue : ''; }