Rocky_Mountain_Vending/.pnpm-store/v10/files/bf/98db83ad99b8da7ef6da7496e2b6fb59c6dd32dd9d64ae598f0c75d0e0c760605da399956a6fede846bd6f2fa05143975fb9af74a61599a01c8e62a8294e0e
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

16 lines
No EOL
259 B
Text

/**
* Removes all child nodes from a given node.
*
* @param node the node to clear
*/
export default function clear(node) {
if (node) {
while (node.firstChild) {
node.removeChild(node.firstChild);
}
return node;
}
return null;
}