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
The code below works with caolan/async v3.2.0 and with suguru03/neo-async v1.8.2 and outputs
Arguments passed from 'each()' callback: [Arguments] { '0': [Function] }
Arguments passed from 'waterfall()' callback: [Arguments] { '0': null }
However after updating suguru03/neo-async to v2.6.2 it will crash, and only work if the "res" argument is added to the "step2" function. The output is now different:
The code below works with caolan/async v3.2.0 and with suguru03/neo-async v1.8.2 and outputs
However after updating suguru03/neo-async to v2.6.2 it will crash, and only work if the "res" argument is added to the "step2" function. The output is now different:
It appears this breaking changes was introduced by the new once() methods in
and the original behaviour seems to be correct and desired, since the new argument is always 'undefined'.
Here's the test code:
The text was updated successfully, but these errors were encountered: