Rev 3845 | Blame | Compare with Previous | Last modification | View Log | RSS feed
// Decode html entitiesString.prototype.htmlEntitiesWidgets = function () {const temp = document.createElement("div");temp.innerHTML = this;const result = temp.childNodes[0].nodeValue;temp.removeChild(temp.firstChild);return result;};