mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-12 05:53:14 -08:00
6 lines
198 B
JavaScript
6 lines
198 B
JavaScript
export const unescapeHTML = (html) => {
|
|
const wrapper = document.createElement('div');
|
|
html = html.replace(/<br \/>|<br>|\n/g, ' ');
|
|
wrapper.innerHTML = html;
|
|
return wrapper.textContent;
|
|
};
|