Rocky_Mountain_Vending/.pnpm-store/v10/files/f3/2133688160c2630e0442c618d9d0fd4f5784766f7328a78ef2b595a7a4c9cf90b1697dd81f203a38d8c041b11a86015e4ac0c9fb048c7118eb5200b3985feb
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

8 lines
318 B
Text

/**
* Returns the closest parent element that matches a given selector.
*
* @param node the reference element
* @param selector the selector to match
* @param stopAt stop traversing when this element is found
*/
export default function closest(node: Element, selector: string, stopAt?: Element): Element | null;