plimit.js

Simple promise concurrency limiter
git clone git://git.finwo.net/lib/plimit.js
Log | Files | Refs | README

commit 7db004625ba0287290fe00dae633c743afaad230
parent 043be14d596f10d1780b39c03676048c1ce53ecc
Author: finwo <finwo@pm.me>
Date:   Fri, 10 Dec 2021 11:35:14 +0100

Fix typo in readme

Diffstat:
MREADME.md | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md @@ -29,7 +29,7 @@ This example shows iterating over accounts without loading all into memory ```js import { MoreThan } from 'typeorm'; -import { Account } from './model/account'; // typescript model +import { Account } from './model/account'; // typeorm model const runner = plimit(4); // runner that allows 4 concurrent tasks let accountId = '';