Rocky_Mountain_Vending/.pnpm-store/v10/files/65/70ef924b9917f3bbd80a31b99492bad10068ba35789e8cef9c10d87b4a09ba08b28fb74975b4f9c9153a239fd24fced07ff8f30f501ea18b9254dbc10ada81
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
611 B
Text

/**
* @license
* Copyright 2022 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @internal
*/
export const ariaQuerySelector = (root, selector) => {
// In Firefox sandboxes globalThis !== window and we expose bindings on globalThis.
return globalThis.__ariaQuerySelector(root, selector);
};
/**
* @internal
*/
export const ariaQuerySelectorAll = async function* (root, selector) {
// In Firefox sandboxes globalThis !== window and we expose bindings on globalThis.
yield* await globalThis.__ariaQuerySelectorAll(root, selector);
};
//# sourceMappingURL=ARIAQuerySelector.js.map