(code)
| 248 | if (data.length > 28) { |
| 249 | const truncated = `${data.substring(0, 12)}...${data.substring(data.length - 12)}`; |
| 250 | return truncated; |
| 251 | } |
| 252 | return data; |
| 253 | } |
| 254 | |
| 255 | normalizeInvitationCode(code) { |
| 256 | if (!code) return ''; |
no outgoing calls
no test coverage detected