PluginProbe
WP Popular Posts / 7.4.2
WP Popular Posts v7.4.2
7.4.2 7.4.1 4.0.8 4.0.9 4.1.0 4.1.1 4.1.2 4.2.0 4.2.1 4.2.2 5.0.0 5.0.1 5.0.2 5.1.0 5.2.0 5.2.1 5.2.2 5.2.3 5.2.4 5.3.0 5.3.1 5.3.2 5.3.3 5.3.4 5.3.5 All 93 releases
wordpress-popular-posts / src / Block / utils.js
utils.js
21 lines 515 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 export function escape_html(value) {
2 const map = {
3 '&': '&',
4 '<': '&lt;',
5 '>': '&gt;',
6 '"': '&quot;',
7 "'": '&#x27;',
8 "/": '&#x2F;',
9 '`': '&grave;',
10 };
11 const reg = /[&<>"'/]/ig;
12 return value.replace(reg, (match)=>(map[match]));
13 }
14
15 export function unescape_html(value) {
16 var div = document.createElement('div');
17 div.innerHTML = value;
18 var child = div.childNodes[0];
19 return child ? child.nodeValue : '';
20 }
21