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

23 lines
No EOL
497 B
Text

/**
* @license
* Copyright 2022 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
/**
* @internal
*/
export class LazyArg {
static create = (get) => {
// We don't want to introduce LazyArg to the type system, otherwise we would
// have to make it public.
return new LazyArg(get);
};
#get;
constructor(get) {
this.#get = get;
}
async get(context) {
return await this.#get(context);
}
}
//# sourceMappingURL=LazyArg.js.map