Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
nyc /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
commands
[ DIR ]
drwxr-xr-x
2024-07-09 21:58
instrumenters
[ DIR ]
drwxr-xr-x
2024-07-09 21:58
config-util.js
1.82
KB
-rw-r--r--
2023-08-21 05:40
fs-promises.js
726
B
-rw-r--r--
2023-08-21 05:40
hash.js
630
B
-rw-r--r--
2023-08-21 05:40
process-args.js
982
B
-rw-r--r--
2023-08-21 05:40
register-env.js
487
B
-rw-r--r--
2023-08-21 05:40
source-maps.js
2.24
KB
-rw-r--r--
2023-08-21 05:40
wrap.js
647
B
-rw-r--r--
2023-08-21 05:40
Save
Rename
'use strict' const { Parser } = require('yargs/yargs') const commands = [ 'report', 'check-coverage', 'instrument', 'merge' ] module.exports = { // don't pass arguments that are meant // for nyc to the bin being instrumented. hideInstrumenterArgs: function (yargv) { var argv = process.argv.slice(1) argv = argv.slice(argv.indexOf(yargv._[0])) if (argv[0][0] === '-') { argv.unshift(process.execPath) } return argv }, // don't pass arguments for the bin being // instrumented to nyc. hideInstrumenteeArgs: function () { var argv = process.argv.slice(2) var yargv = Parser(argv) if (!yargv._.length) return argv for (var i = 0, command; (command = yargv._[i]) !== undefined; i++) { if (~commands.indexOf(command)) return argv } // drop all the arguments after the bin being // instrumented by nyc. argv = argv.slice(0, argv.indexOf(yargv._[0])) argv.push(yargv._[0]) return argv } }