Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.147.79.68
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
undertaker /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
helpers
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
get-task.js
96
B
-rw-rw-r--
2022-08-30 11:49
last-run.js
483
B
-rw-rw-r--
2022-08-30 11:49
parallel.js
726
B
-rw-rw-r--
2022-08-30 11:49
registry.js
474
B
-rw-rw-r--
2022-08-30 11:49
series.js
716
B
-rw-rw-r--
2022-08-30 11:49
set-task.js
821
B
-rw-rw-r--
2022-08-30 11:49
task.js
238
B
-rw-rw-r--
2022-08-30 11:49
tree.js
504
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
'use strict'; var assert = require('assert'); var metadata = require('./helpers/metadata'); function set(name, fn) { assert(name, 'Task name must be specified'); assert(typeof name === 'string', 'Task name must be a string'); assert(typeof fn === 'function', 'Task function must be specified'); function taskWrapper() { return fn.apply(this, arguments); } function unwrap() { return fn; } taskWrapper.unwrap = unwrap; taskWrapper.displayName = name; var meta = metadata.get(fn) || {}; var nodes = []; if (meta.branch) { nodes.push(meta.tree); } var task = this._registry.set(name, taskWrapper) || taskWrapper; metadata.set(task, { name: name, orig: fn, tree: { label: name, type: 'task', nodes: nodes, }, }); } module.exports = set;