Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/pmb/node_modules_old/jsdom/lib/jsdom/ drwxrwxrwx | |
| Viewing file: Select action/file-type: "use strict";
const { EventEmitter } = require("events");
module.exports = class VirtualConsole extends EventEmitter {
constructor() {
super();
this.on("error", () => {
// If "error" event has no listeners,
// EventEmitter throws an exception
});
}
sendTo(anyConsole, options) {
if (options === undefined) {
options = {};
}
for (const method of Object.keys(anyConsole)) {
if (typeof anyConsole[method] === "function") {
function onMethodCall(...args) {
anyConsole[method](...args);
}
this.on(method, onMethodCall);
}
}
if (!options.omitJSDOMErrors) {
this.on("jsdomError", e => anyConsole.error(e.stack, e.detail));
}
return this;
}
};
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0053 ]-- |