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

13 lines
No EOL
233 B
Text

/**
* Removes a given node from the DOM.
*
* @param node the node to remove
*/
export default function remove(node) {
if (node && node.parentNode) {
node.parentNode.removeChild(node);
return node;
}
return null;
}