p-queue icon indicating copy to clipboard operation
p-queue copied to clipboard

Promise queue with concurrency control, for Deno

Results 4 p-queue issues
Sort by recently updated
recently updated
newest added

- up to [email protected] which fixes 'missing field `now`' error ```text > deno run mod.ts error: missing field `now` at line 21 column 1 at file:///.../deps.ts:1:51 ```

Hello, I've found that `.on` does not exists anymore on the `PQueue` instance, but `addEventListener` works.

This issue provides visibility into Renovate updates and their statuses. [Learn more](https://docs.renovatebot.com/key-concepts/dashboard/) This repository currently has no open or pending branches. --- - [ ] Check this box to trigger...

```js const queue = new PQueue({ concurrency: 10, }) queue.on("next", async () => {console.log('next')}) ``` throw the error: ```js error: Uncaught (in promise) TypeError: queue.on is not a function ```...