UNPKG

dexie-react-hooks

Version:

React hooks for reactive data fetching using Dexie.js

5 lines (4 loc) 173 B
export function closest(node: Node, selector: string) { const element = node.nodeType === 1 ? node as Element : node.parentElement; return element?.closest(selector); }