()
| 681 | return; |
| 682 | } |
| 683 | |
| 684 | const tags = char.tags instanceof Map ? Array.from(char.tags.entries()) : Object.entries(char.tags || {}); |
| 685 | let tagsHTML = ''; |
| 686 | tags.forEach(([key, value]) => { |
| 687 | tagsHTML += `<div class="carrot-tag-item"><strong>${escapeHtml(key)}:</strong> ${escapeHtml(String(value))}</div>`; |
| 688 | }); |
| 689 |
no test coverage detected