Rocky_Mountain_Vending/.pnpm-store/v10/files/87/3b168f2b255fdfd5d0ee1abce8c32fdbeac43c2e8b3edf49712aea630a5f14ba1302703b7a5ebaa25017993f395d3205e28e996535bd8f059a741f05500967
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

27 lines
No EOL
620 B
Text

"use strict";
/**
* @license
* Copyright 2022 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.LazyArg = void 0;
/**
* @internal
*/
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);
}
}
exports.LazyArg = LazyArg;
//# sourceMappingURL=LazyArg.js.map