Server IP : 162.213.251.212 / Your IP : 18.225.235.157 [ Web Server : LiteSpeed System : Linux business55.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : allssztx ( 535) PHP Version : 8.1.31 Disable Function : NONE Domains : 1 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/allssztx/public_html/easybuyer/node_modules/webpack/lib/container/ |
Upload File : |
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra, Zackary Jackson @ScriptedAlchemy, Marais Rossouw @maraisr */ "use strict"; const Dependency = require("../Dependency"); const makeSerializable = require("../util/makeSerializable"); /** @typedef {import("./ContainerEntryModule").ExposeOptions} ExposeOptions */ class ContainerEntryDependency extends Dependency { /** * @param {string} name entry name * @param {[string, ExposeOptions][]} exposes list of exposed modules * @param {string} shareScope name of the share scope */ constructor(name, exposes, shareScope) { super(); this.name = name; this.exposes = exposes; this.shareScope = shareScope; } /** * @returns {string | null} an identifier to merge equal requests */ getResourceIdentifier() { return `container-entry-${this.name}`; } get type() { return "container entry"; } get category() { return "esm"; } } makeSerializable( ContainerEntryDependency, "webpack/lib/container/ContainerEntryDependency" ); module.exports = ContainerEntryDependency;