Rocky_Mountain_Vending/.pnpm-store/v10/files/a6/a90659a5b723391900b7ae16687329bba0aaeba8000fe7728391a2f6c666c5a691a19c02e33f8ae09b9d19495e0bc503e7d5163396efaba93104d5dfea0959
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

15 lines
No EOL
279 B
Text

"use strict";
exports.__esModule = true;
exports.default = childElements;
/**
* Collects all child elements of an element.
*
* @param node the element
*/
function childElements(node) {
return node ? Array.from(node.children) : [];
}
module.exports = exports["default"];