Rocky_Mountain_Vending/.pnpm-store/v10/files/43/07e2ad8f46382b959b53459e8e25b37c3b62457eb05f52f7953fd7a5efb332914bf7142f18ea2ff3111a71a5ea120661ebf1bba7b000c84697abd7717da064
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
305 B
Text

var toArray = Function.prototype.bind.call(Function.prototype.call, [].slice);
/**
* Runs `querySelectorAll` on a given element.
*
* @param element the element
* @param selector the selector
*/
export default function qsa(element, selector) {
return toArray(element.querySelectorAll(selector));
}