Wywołanie async.series wewnątrz async.series generuje nieprzewidywalne dane wyjściowe

Korzystając z biblioteki asynchronicznej caolana dla node.js, próbowałem wywołać funkcję, która używaasync.series wewnątrz innej funkcji korzystającej z async.series, ale nadal nie mogę uruchomić funkcji we właściwej kolejności, jak opisano poniżej:

Wyjście terminala pokazuje drugą funkcję wywoływaną przed pierwszą, bez wyraźnego powodu:

The "sys" module is now called "util". It should have a similar interface.
Starting the second step in the series
Value of b: undefined
Invoking the function firstStep
the value of toObtain is: [object Object]

A oto odpowiedni kod źródłowy:

var im = require('imagemagick');
var async = require('async');

var toObtain;


var b;
async.series([

function (callback) {
    //It appears that this function is being invoked after the second function.
    //Why is this happening?
    firstStep();
    callback();
},

function (callback) {
    //Why is the output of this function being displayed BEFORE the output of the function above? It's the opposite of the order in which I'm calling the functions.
    console.log("Starting the second step in the series");
    console.log("Value of b: " + b);
}]);


function firstStep(){
    async.series([

    function (next) { // step one - call the function that sets toObtain
        im.identify('kittens.png', function (err, features) {
            if (err) throw err;
            console.log("Invoking the function firstStep");
            toObtain = features;
            //console.log(toObtain);
            b = toObtain.height;
            next(); // invoke the callback provided by async
        });
    },

    function (next) { // step two - display it
        console.log('the value of toObtain is: %s',toObtain.toString());
    }]);
}

questionAnswers(1)

yourAnswerToTheQuestion