You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Example :
var encodedHTML = "<b>"
var decodedHTML = encodedHTML.unescapeHTML();
//Result : "<b>"
//This is wrong it should be
should be :
function unescapeHTML() {
return this.stripTags().replace(/</gi,'<').replace(/>/gi,'>').replace(/&/gi,'&');
}