puppeteer-core
Version:
A high-level API to control headless Chrome over the DevTools Protocol
27 lines • 620 B
JavaScript
/**
* @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
;