You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 10, 2019. It is now read-only.
Hello @marten-de-vries I have some experiments with your plugin and I found it interesting, but I have some cases when I don't get that I expected. For example I should to get sum of 100, 200, 300 but I cannot to get it.
constdelay=(time,value)=>newPromise((resolver,rejecter)=>setTimeout(()=>resolver(value),time))constf=async(x,y,z)=>{consta=awaitdelay(1000,x);console.log(a);constb=awaitdelay(2000,y);console.log(b);constc=awaitdelay(3000,z);console.log(c);returna+b+c;}f(100,200,300).then(sum=>console.log(`Sum of two arguments is ${sum}`));