(text)
| 1763 | |
| 1764 | // HTML 转义 |
| 1765 | function escapeHtml(text) { |
| 1766 | if (!text) return ''; |
| 1767 | const div = document.createElement('div'); |
| 1768 | div.textContent = text; |
| 1769 | return div.innerHTML; |
| 1770 | } |
| 1771 | |
| 1772 | // ============== CPA 服务选择 ============== |
| 1773 |
no outgoing calls
no test coverage detected