Rocky_Mountain_Vending/.pnpm-store/v10/files/81/e16dc18ae23d2f31fde2549fe0991fa626aaee170d9401a77203893732f0834311e10ee59cf840e9c54ce7075c5413a3f288239b4310d4de472dff14d3c679
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

11 lines
No EOL
324 B
Text

import collectSiblings from './collectSiblings';
/**
* Collects all next sibling elements of an element until a given selector is matched.
*
* @param node the referene node
* @param selector the selector to match
*/
export default function nextUntil(node, selector) {
return collectSiblings(node, node, selector);
}