UNPKG

puppeteer-core

Version:

A high-level API to control headless Chrome over the DevTools Protocol

51 lines 1.21 kB
/** * @license * Copyright 2024 Google Inc. * SPDX-License-Identifier: Apache-2.0 */ import { source as injectedSource } from '../generated/injected.js'; /** * @internal */ export class ScriptInjector { #updated = false; #amendments = new Set(); // Appends a statement of the form `(PuppeteerUtil) => {...}`. append(statement) { this.#update(() => { this.#amendments.add(statement); }); } pop(statement) { this.#update(() => { this.#amendments.delete(statement); }); } inject(inject, force = false) { if (this.#updated || force) { inject(this.#get()); } this.#updated = false; } #update(callback) { callback(); this.#updated = true; } #get() { return `(() => { const module = {}; ${injectedSource} ${[...this.#amendments] .map(statement => { return `(${statement})(module.exports.default);`; }) .join('')} return module.exports.default; })()`; } } /** * @internal */ export const scriptInjector = new ScriptInjector(); //# sourceMappingURL=ScriptInjector.js.map