Rocky_Mountain_Vending/.pnpm-store/v10/files/38/9f7de380ddc86d416376c2b80cd9775ba76b3c10387c9371860067008b07799c0d7ea0d9f476aa9b7b4e428270c9b5e1c6d104535e8d58c7c3c558c0b8f8bf
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

10 lines
No EOL
250 B
Text

var toArray = Function.prototype.bind.call(Function.prototype.call, [].slice);
/**
* Collects all child nodes of an element.
*
* @param node the node
*/
export default function childNodes(node) {
return node ? toArray(node.childNodes) : [];
}