UNPKG

@e280/quay

Version:

File-browser and outliner UI for the web

13 lines (12 loc) 244 B
export function findGroupName(el: HTMLElement) { for ( let current: HTMLElement | null = el; current; current = current.parentElement ) { const group = current.getAttribute("group") if (group) return group } return "default" }