nakama/frontend/src/utils/htmlEntities.js

14 lines
383 B
JavaScript
Raw Normal View History

2025-12-04 20:00:39 +00:00
// Декодировать HTML entities (например, / -> /)
export function decodeHtmlEntities(str = '') {
if (!str || typeof str !== 'string') {
return str;
}
// Создаем временный элемент для декодирования
const textarea = document.createElement('textarea');
textarea.innerHTML = str;
return textarea.value;
}
2025-12-08 20:11:50 +00:00