Rocky_Mountain_Vending/.pnpm-store/v10/files/7a/1d209f0bc46cd7cf5913f9da90a6e42203cd5d16814b97355a0cfe2c5007741f3c61b97725e51a3c66f80c0e2cece36809ab6a108ff1eecaf3f05c49c2c7f2
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

26 lines
497 B
Text

/**
* @license
* Copyright 2024 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @internal
*/
export const cssQuerySelector = (
root: Node,
selector: string,
): Element | null => {
// @ts-expect-error assume element root
return root.querySelector(selector);
};
/**
* @internal
*/
export const cssQuerySelectorAll = function (
root: Node,
selector: string,
): Iterable<Element> {
// @ts-expect-error assume element root
return root.querySelectorAll(selector);
};