(text)
| 848 | var selectedTextForBlockKeywords = ''; |
| 849 | // 规范化屏蔽词文本:压缩多余空白并去掉首尾空格 |
| 850 | function normalizeBlockKeywordText(text) { |
| 851 | return (text || '').replace(/\s+/g, ' ').trim(); |
| 852 | } |
| 853 | |
| 854 | // 读取当前选中的文字,兼容输入框和普通页面选区 |
| 855 | function getSelectedBlockKeywordText() { |
no outgoing calls
no test coverage detected