(el)
| 10 | |
| 11 | /* ---------------- helpers ---------------- */ |
| 12 | function getRowEl(el) { |
| 13 | return el?.closest('tr[data-file-name], .gallery-card[data-file-name]') || null; |
| 14 | } |
| 15 | function parentFolderOf(path) { |
| 16 | if (!path || path === 'root') return 'root'; |
| 17 | const parts = String(path).split('/').filter(Boolean); |
no outgoing calls
no test coverage detected