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 : 18.217.230.80
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
thunky /
Delete
Unzip
Name
Size
Permission
Date
Action
.travis.yml
69
B
-rw-r--r--
1985-10-26 08:15
LICENSE
1.05
KB
-rw-r--r--
1985-10-26 08:15
README.md
2.14
KB
-rw-r--r--
1985-10-26 08:15
index.js
1.03
KB
-rw-r--r--
1985-10-26 08:15
package.json
1.43
KB
-rw-r--r--
2021-02-04 21:24
test.js
2.01
KB
-rw-r--r--
1985-10-26 08:15
Save
Rename
'use strict' var nextTick = nextTickArgs process.nextTick(upgrade, 42) // pass 42 and see if upgrade is called with it module.exports = thunky function thunky (fn) { var state = run return thunk function thunk (callback) { state(callback || noop) } function run (callback) { var stack = [callback] state = wait fn(done) function wait (callback) { stack.push(callback) } function done (err) { var args = arguments state = isError(err) ? run : finished while (stack.length) finished(stack.shift()) function finished (callback) { nextTick(apply, callback, args) } } } } function isError (err) { // inlined from util so this works in the browser return Object.prototype.toString.call(err) === '[object Error]' } function noop () {} function apply (callback, args) { callback.apply(null, args) } function upgrade (val) { if (val === 42) nextTick = process.nextTick } function nextTickArgs (fn, a, b) { process.nextTick(function () { fn(a, b) }) }