(text)
| 2617 | } |
| 2618 | |
| 2619 | function compactMemoryText(text) { |
| 2620 | return String(text || "") |
| 2621 | .replace(/\s+/g, " ") |
| 2622 | .trim() |
| 2623 | .slice(0, 220); |
| 2624 | } |
| 2625 | |
| 2626 | function getQqPersonaGroup(groupId) { |
| 2627 | if (!groupId) return null; |
no outgoing calls
no test coverage detected