JSFiddle - React, Tailwind, and code Playground

by Alexander

JavaScript

console.clear();

function html_entity_decode(input){
  var e = document.createElement('div');
  e.innerHTML = input;
  return e.childNodes.length === 0 ? "" : e.childNodes[0].nodeValue;
}

console.log(html_entity_decode('  < >'));