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 original version of autoInject unpacked arguments into the final callback. The current version does not do this:
async.autoInject({ a: function(cb) { cb(null, 1); }, b: function(cb) { cb(null, 2); } }, function(err, a, b) { console.log('a: ' + a + ' b: ' + b); });
Expected: a: 1, b: 2 Actual: a: [object Object], b: undefined
The documentation still refers to the original behaviour.
The text was updated successfully, but these errors were encountered:
To be clear, I see this as an oversight made during the porting of the code, not a documentation error.
Sorry, something went wrong.
Closed by #1100
No branches or pull requests
The original version of autoInject unpacked arguments into the final callback. The current version does not do this:
Expected: a: 1, b: 2
Actual: a: [object Object], b: undefined
The documentation still refers to the original behaviour.
The text was updated successfully, but these errors were encountered: