bug fix + ux improvements

This commit is contained in:
Daniel
2023-08-22 00:43:34 -04:00
parent 09ea45eec0
commit acc974ecfe
8 changed files with 168 additions and 105 deletions
+4
View File
@@ -0,0 +1,4 @@
export default function htmlDecode(input: string) {
var doc = new DOMParser().parseFromString(input, "text/html");
return doc.documentElement.textContent;
}