13 lines
382 B
JavaScript
13 lines
382 B
JavaScript
|
|
// Декодировать HTML entities (например, / -> /)
|
||
|
|
export function decodeHtmlEntities(str = '') {
|
||
|
|
if (!str || typeof str !== 'string') {
|
||
|
|
return str;
|
||
|
|
}
|
||
|
|
|
||
|
|
// Создаем временный элемент для декодирования
|
||
|
|
const textarea = document.createElement('textarea');
|
||
|
|
textarea.innerHTML = str;
|
||
|
|
return textarea.value;
|
||
|
|
}
|
||
|
|
|