(value: string | null)
| 236 | } |
| 237 | |
| 238 | function sanitizeObjectText(value: string | null): string { |
| 239 | if (value === null) { |
| 240 | return ""; |
| 241 | } |
| 242 | |
| 243 | const text = value.replace(/\s+/g, " ").trim(); |
| 244 | return text.length > 120 ? `${text.slice(0, 117)}...` : text; |
| 245 | } |
| 246 | |
| 247 | function ensureAssemblies(): boolean { |
| 248 | if (assemblies !== null) { |
no outgoing calls
no test coverage detected