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.15.28.86
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 /
globs /
Delete
Unzip
Name
Size
Permission
Date
Action
History.md
607
B
-rw-r--r--
1985-10-26 08:15
Readme.md
1.7
KB
-rw-r--r--
1985-10-26 08:15
index.d.ts
1005
B
-rw-r--r--
1985-10-26 08:15
index.js
2.15
KB
-rw-r--r--
1985-10-26 08:15
package.json
1.47
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
import glob = require("glob"); /** * Performs an asynchronous glob search. * @param pattern Pattern or patterns to be matched. * @param cb The callback invoked when the search completes. */ declare function G(pattern: string|string[], cb: (err: Error | null, matches: string[]) => void): void; /** * Performs an asynchronous glob search. * @param pattern Pattern or patterns to be matched. * @param options The glob options to use. * @param cb The callback invoked when the search completes. */ declare function G(pattern: string|string[], options: glob.IOptions, cb: (err: Error | null, matches: string[]) => void): void; declare namespace G { /** * Performs an synchronous glob search. * @param pattern Pattern or patterns to be matched. * @param options The glob options to use. * @returns The file paths matched by the glob patterns. */ function sync(pattern: string|string[], options?: glob.IOptions): string[]; } export = G;