blob: 03a5d1198d64fb67e7807af71a07c261b221da91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
var Entities = {
get htmlNode() {
delete this.htmlNode;
return this.htmlNode = document.implementation.createHTMLDocument("")
.createElement("body");
},
convert: function(e) {
try {
this.htmlNode.innerHTML = e;
var child = this.htmlNode.firstChild || null;
return child && child.nodeValue || e;
} catch(ex) {
return e;
}
},
convertAll: function(s) {
return s.replace(/[\\&][^<>]+/g, function(e) { return Entities.convert(e) });
},
convertDeep: function(s) {
for (var prev = null; (s = this.convertAll(s)) !== prev || (s = unescape(s)) !== prev; prev = s);
return s;
},
neutralize: function(e, whitelist) {
var c = this.convert(e);
return (c == e) ? c : (whitelist && whitelist.test(c) ? e : e.replace(";", ","));
},
neutralizeAll: function(s, whitelist) {
return s.replace(/&[\w#-]*?;/g, function(e) { return Entities.neutralize(e, whitelist || null); });
}
};
|