| Server IP : 217.160.0.212 / Your IP : 216.73.217.79 Web Server : Apache System : Linux www 6.18.52-i1-ampere #1203 SMP Mon Sep 14 18:29:59 CEST 2026 aarch64 User : sws1073854427 ( 1073854427) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/share/node_modules/webpack/lib/dependencies/ |
Upload File : |
/*
MIT License http://www.opensource.org/licenses/mit-license.php
*/
"use strict";
const RuntimeGlobals = require("../RuntimeGlobals");
const RuntimeModule = require("../RuntimeModule");
const Template = require("../Template");
class AMDDefineRuntimeModule extends RuntimeModule {
constructor() {
super("amd define");
}
/**
* @returns {string} runtime code
*/
generate() {
return Template.asString([
`${RuntimeGlobals.amdDefine} = function () {`,
Template.indent("throw new Error('define cannot be used indirect');"),
"};"
]);
}
}
class AMDOptionsRuntimeModule extends RuntimeModule {
/**
* @param {Record<string, boolean | number | string>} options the AMD options
*/
constructor(options) {
super("amd options");
this.options = options;
}
/**
* @returns {string} runtime code
*/
generate() {
return Template.asString([
`${RuntimeGlobals.amdOptions} = ${JSON.stringify(this.options)};`
]);
}
}
exports.AMDDefineRuntimeModule = AMDDefineRuntimeModule;
exports.AMDOptionsRuntimeModule = AMDOptionsRuntimeModule;