Skip to content

Commit 6f4eaf9

Browse files
committed
Change order in delayed requests
1 parent bdd6712 commit 6f4eaf9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

JavaScript/5-async.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const poolify = (factory, min, norm, max) => {
99
const pool = (par) => {
1010
if (typeof(par) !== 'function') {
1111
if (pool.items.length < max) {
12-
const delayed = pool.delayed.pop();
12+
const delayed = pool.delayed.shift();
1313
if (delayed) {
1414
console.log('Recycle item, pass to delayed', pool.items.length);
1515
delayed(par);

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy