Socket
Book a DemoInstallSign in
Socket

@highoutput/async-group

Package Overview
Dependencies
Maintainers
5
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@highoutput/async-group

Groups together multiple promises and allows to 'wait' for all of them to settle.

latest
Source
npmnpm
Version
0.5.0
Version published
Maintainers
5
Created
Source

async-group

Groups together multiple promises and allows to 'wait' for all of them to settle.

Usage

import delay from '@highoutput/delay';
import AsyncGroup from '@highoutput/async-group';

AsyncGroup.add(delay('2s'));
AsyncGroup.add(delay('3s'));

const timestamp = process.hrtime();
AsyncGroup.wait().then(() => console.log(process.hrtime(timestamp).shift())); // 5

delay('1s').then(() => AsyncGroup.add(delay('4s')));

FAQs

Package last updated on 11 Mar 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts