(content: string | undefined | null)
| 109 | } |
| 110 | |
| 111 | function isImageOnlyMessage(content: string | undefined | null): boolean { |
| 112 | if (!content) return false |
| 113 | return /^\[图片:\s*.+\]$/.test(content.trim()) |
| 114 | } |
| 115 | |
| 116 | // ==================== Conflict detection ==================== |
| 117 |
no outgoing calls
no test coverage detected