We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a75a2ca commit fb5c731Copy full SHA for fb5c731
README.md
@@ -7,6 +7,8 @@
7
8
A library to limit the number of concurrent asynchronous tasks.
9
10
+The queue will start immediately when the task is added to the queue.
11
+
12
## Installation
13
14
```bash
@@ -24,7 +26,6 @@ const { AsyncQueue } = require("@axetroy/async-queue");
24
26
```
25
27
28
```js
-// import via esm
29
import { AsyncQueue } from "@axetroy/async-queue";
30
31
const delay = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
0 commit comments