(error: unknown)
| 309 | } |
| 310 | |
| 311 | function sanitizeFilename(name: string): string { |
| 312 | const cleaned = name |
| 313 | .replace(/[\\/:*?"<>|]/g, " ") |
| 314 | .replace(/\s+/g, " ") |
| 315 | .trim(); |
| 316 | return (cleaned || "music").slice(0, 80); |
no outgoing calls
no test coverage detected