Skip to content
New issue

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 generated function of seq requires last argument to be function? #613

Closed
mocheng opened this issue Sep 5, 2014 · 3 comments
Closed
Labels

Comments

@mocheng
Copy link

mocheng commented Sep 5, 2014

The sample code here https://github.com/caolan/async#seq looks that generated function of seq can work with only one argument.

However, below code breaks

var async = require('async');

var init_arg = 3;

async.seq(
    function (num, next) {
        console.log(num);
        console.log(next);
        next(null, num + 1);
    },
    function (num, next) {
        console.log(num);
        console.log(next);

        next(null, num + 3);
    }
)(init_arg);

The output is like:

/Users/chengmo/stash/beeper/test.js:9
next(null, num + 1);
^
TypeError: undefined is not a function
at /Users/chengmo/stash/beeper/test.js:9:3
at /Users/chengmo/stash/beeper/node_modules/async/lib/async.js:1058:20
at /Users/chengmo/stash/beeper/node_modules/async/lib/async.js:272:13
at iterate (/Users/chengmo/stash/beeper/node_modules/async/lib/async.js:149:13)
at Object.async.eachSeries (/Users/chengmo/stash/beeper/node_modules/async/lib/async.js:165:9)
at Object.async.reduce (/Users/chengmo/stash/beeper/node_modules/async/lib/async.js:271:15)
at /Users/chengmo/stash/beeper/node_modules/async/lib/async.js:1057:19
at Object. (/Users/chengmo/stash/beeper/test.js:22:2)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)

@aearly
Copy link
Collaborator

aearly commented Sep 8, 2014

Specify a callback function:

var async = require('async');

var init_arg = 3;

async.seq(
    function (num, next) {
        console.log(num);
        console.log(next);
        next(null, num + 1);
    },
    function (num, next) {
        console.log(num);
        console.log(next);

        next(null, num + 3);
    }
)(init_arg, function (err, result) {
    //...
});

The documentation is a bit poor since it doesn't have one in its example, but the callback is needed in order to work.

@mocheng
Copy link
Author

mocheng commented Sep 8, 2014

In some cases, I suppose in most cases, no callback is wanted for seq. No callback means no-op callback would be better.

@aearly
Copy link
Collaborator

aearly commented Sep 9, 2014

I agree -- it would be pretty simple to add a noop callback if none exists. PR's are welcome, @caolan will get to them, eventually....

@mocheng mocheng changed the title The generated function of seq requires second argument? The generated function of seq requires last argument to be function? Sep 10, 2014
@aearly aearly closed this as completed May 19, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants