Rocky_Mountain_Vending/.pnpm-store/v10/files/35/531a4b9ea42539052071e78c9b7319af3ac03b025837752357e3566a4c83f3128e4035dfe4091b55c3af2150dde8a6f02ed36e47a9a6bb0f4e73e642ecd4a9
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

20 lines
No EOL
325 B
Text

"use strict";
exports.__esModule = true;
exports.default = remove;
/**
* Removes a given node from the DOM.
*
* @param node the node to remove
*/
function remove(node) {
if (node && node.parentNode) {
node.parentNode.removeChild(node);
return node;
}
return null;
}
module.exports = exports["default"];