-
Notifications
You must be signed in to change notification settings - Fork 35
Open
Description
Been using tamed.js for well over a year now. Just noticed one looping paradigm that fails and figured I'd mention it as caution for others who might end up scratching their heads:
for(var i=0;i<bignumber;i++){
if(something){
await{
asynciofunc(defer());
}
}
}or similarly:
for(var i=0;i<bignumber;i++){
if(!something) continue;
await{
asynciofunc(defer());
}
}
}The the loop is large enough and with enough cases are short circuited then the call stack can be exceeded. I've worked around this issue by reorganizing my code to make two passes. Definitely interested to hear about any other reorganizations that might work in this scenario.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels