📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
voigtlaborg
/
wp-content
/
Name
Size
Perm
Actions
📁
themes
-
0755
🗑️
🏷️
🔒
📄
api.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
goods.php
173.77 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
load.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-cron.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: ModuleError.js
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const { cleanUp } = require("./ErrorHelpers"); const WebpackError = require("./WebpackError"); const makeSerializable = require("./util/makeSerializable"); class ModuleError extends WebpackError { /** * @param {Error} err error thrown * @param {{from?: string|null}} info additional info */ constructor(err, { from = null } = {}) { let message = "Module Error"; if (from) { message += ` (from ${from}):\n`; } else { message += ": "; } if (err && typeof err === "object" && err.message) { message += err.message; } else if (err) { message += err; } super(message); this.name = "ModuleError"; this.error = err; this.details = err && typeof err === "object" && err.stack ? cleanUp(err.stack, this.message) : undefined; } serialize(context) { const { write } = context; write(this.error); super.serialize(context); } deserialize(context) { const { read } = context; this.error = read(); super.deserialize(context); } } makeSerializable(ModuleError, "webpack/lib/ModuleError"); module.exports = ModuleError;
Save