/
TON618OFF
/
FinalPWHTML
Обзор
Документация
Войти
/
TON618OFF
/
FinalPWHTML
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/webpack/lib/dependencies/AMDRuntimeModules.js
48 строк
1 KB
TON618OFF
не ну это ваще
23 июн 2024, 00:30
23 июн 2024, 00:30
e27ae20
Код
Авторство
О чём код?
/* 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 | null} 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 | null} runtime code */ generate() { return Template.asString([ `${RuntimeGlobals.amdOptions} = ${JSON.stringify(this.options)};` ]); } } exports.AMDDefineRuntimeModule = AMDDefineRuntimeModule; exports.AMDOptionsRuntimeModule = AMDOptionsRuntimeModule;