Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
p-try /
Delete
Unzip
Name
Size
Permission
Date
Action
index.d.ts
700
B
-rw-r--r--
2022-05-01 21:01
index.js
140
B
-rw-r--r--
2022-05-01 21:01
package.json
776
B
-rw-r--r--
2022-05-01 21:01
Save
Rename
/** Start a promise chain. @param function_ - The function to run to start the promise chain. @param arguments - Arguments to pass to `function_`. @returns The value of calling `function_(...arguments)`. If the function throws an error, the returned `Promise` will be rejected with that error. @example ``` import pTry from 'p-try'; try { const value = await pTry(() => { return synchronousFunctionThatMightThrow(); }); console.log(value); } catch (error) { console.error(error); } ``` */ export default function<ValueType, ArgumentsType extends unknown[]>( function_: (...arguments: ArgumentsType) => PromiseLike<ValueType> | ValueType, ...arguments: ArgumentsType ): Promise<ValueType>;