Is there any way to skip the calls in serial or parallel calls flow.
var flow = require('flow');
flow.exec(
function(){
//Execute
},
function(){
//Skip
},
function(){
//Exec
},
function(){
//Done
}
);
Just create a condition inside the method that you might want to skip and trigger the callback immediately