Rocky_Mountain_Vending/.pnpm-store/v10/files/12/dcf779db06f6bcaac89f7ff2ae57423e842dfa8f27fb86692785bd7e69937f3b371dae3056316c9ddfa9e7b9da71638e77da551a875f8a8bc27d59ab9fc9a3
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
No EOL
185 B
Text

/**
* Returns the owner document of a given element.
*
* @param node the element
*/
export default function ownerDocument(node) {
return node && node.ownerDocument || document;
}