(name)
| 663 | const PDF_EXT = new Set(['pdf']); |
| 664 | |
| 665 | function getPreviewType(name) { |
| 666 | const ext = getExt(name); |
| 667 | if (IMG_EXT.has(ext)) return 'image'; |
| 668 | if (VID_EXT.has(ext)) return 'video'; |
| 669 | if (AUD_EXT.has(ext)) return 'audio'; |
| 670 | if (PDF_EXT.has(ext)) return 'pdf'; |
| 671 | return ''; |
| 672 | } |
| 673 | |
| 674 | function renderBreadcrumbs() { |
| 675 | const el = document.getElementById('shareBreadcrumbs'); |
no test coverage detected