We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following line will cause an infinite loop if the action passed to every returns false.
return !result || list.length > 0;
As !result will be true even when the list is exhausted true will be passed to the pool indicating that is should keep looping.
!result
true
The text was updated successfully, but these errors were encountered:
I just got bit by this.
Sorry, something went wrong.
This is a pretty glaring bug. Is the maintainer active here?
I don't think so, no reaction on my issue report #3 either
No branches or pull requests
The following line will cause an infinite loop if the action passed to every returns false.
As
!result
will be true even when the list is exhaustedtrue
will be passed to the pool indicating that is should keep looping.The text was updated successfully, but these errors were encountered: