Existe uma maneira de parar a execução da próxima função da série com async em nodejs?

  async.map(list, function(object, callback) {
    async.series([
      function(callback) {
        console.log("1");

        var booltest = false;
        // assuming some logic is performed that may or may not change booltest
        if(booltest) {
            // finish this current function, move on to next function in series
        } else {
           // stop here and just die, dont move on to the next function in the series
        }

        callback(null, 'one');
      },
      function(callback) {
        console.log("2");
        callback(null, 'two');
      }
    ],
    function(err, done){
    });
  });

Existe alguma maneira tal que se function1 se booltest for avaliado como verdadeiro, não vá para a próxima função que gera "2"?

questionAnswers(4)

yourAnswerToTheQuestion