(text)
| 2208 | |
| 2209 | // HTML 转义 |
| 2210 | function escapeHtml(text) { |
| 2211 | if (!text) return ''; |
| 2212 | const div = document.createElement('div'); |
| 2213 | div.textContent = text; |
| 2214 | return div.innerHTML; |
| 2215 | } |
| 2216 | |
| 2217 | |
| 2218 | // ============== Outlook 批量注册功能 ============== |
no outgoing calls
no test coverage detected