(error: unknown)
| 313 | .replace(/[\\/:*?"<>|]/g, " ") |
| 314 | .replace(/\s+/g, " ") |
| 315 | .trim(); |
| 316 | return (cleaned || "music").slice(0, 80); |
| 317 | } |
| 318 | |
| 319 | function detectAudioExtension(url: string, contentType?: string): string { |
| 320 | const lowerType = (contentType || "").toLowerCase(); |
no test coverage detected