mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-22 13:26:00 +00:00
7 lines
196 B
TypeScript
7 lines
196 B
TypeScript
export function decodeHtmlEntities(text: string): string {
|
|
if (!text) return text;
|
|
const textarea = document.createElement('textarea');
|
|
textarea.innerHTML = text;
|
|
return textarea.value;
|
|
}
|