Rocky_Mountain_Vending/.pnpm-store/v10/files/dc/879cbea8b952479479bf9a6754a2a7683323653ed91088b59eeecc891fa0af7d6bfe0689712693aceb71b266881a3868b318c7df287f9565a0280cbed62176
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

29 lines
708 B
Text

/**
* @license
* Copyright 2023 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type {PuppeteerInjectedUtil} from '../injected/injected.js';
import {QueryHandler} from './QueryHandler.js';
/**
* @internal
*/
export class PierceQueryHandler extends QueryHandler {
static override querySelector = (
element: Node,
selector: string,
{pierceQuerySelector}: PuppeteerInjectedUtil,
): Node | null => {
return pierceQuerySelector(element, selector);
};
static override querySelectorAll = (
element: Node,
selector: string,
{pierceQuerySelectorAll}: PuppeteerInjectedUtil,
): Iterable<Node> => {
return pierceQuerySelectorAll(element, selector);
};
}