RSS Git Download  Clone
Raw Blame History 176B 6 lines
export function htmlStrip(html: string): string {
    const tmp = document.createElement("DIV");
    tmp.innerHTML = html;
    return tmp.textContent || tmp.innerText || "";
}