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>
27 lines
No EOL
620 B
Text
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 |