Rocky_Mountain_Vending/.pnpm-store/v10/files/85/e3a080734838bad0221ce72c0e4ec76953f49eac2b39a735249d47d64e14ff768dce3eebae955706853c63dd15b31285ddddbace1919b559c770c41fd50346
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

25 lines
No EOL
841 B
Text

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