-
@DanShappir @jaffathecake Yeah I was batching a bunch of promises and used the new Promise() to encapsulate some variables. const ps = [ new Promise( () => { const x = 'a'; return doWork(x); }), new Promise( () => { const x = 'b'; return doWork(x); }), ]; Promise.all( ps);
-
@DanShappir @jaffathecake It made sense at the time I was writing it 😅