@shopgate/pwa-common
Version:
Common library for the Shopgate Connect PWA.
11 lines • 313 B
JavaScript
/**
* Unescape HTML entities.
* @param {string} input The escaped HTML.
* @returns {string} The unescaped HTML.
*/
const decodeHTML = input => {
const e = document.createElement('div');
e.innerHTML = input;
return e.childNodes.length === 0 ? '' : e.childNodes[0].nodeValue;
};
export default decodeHTML;