I have the following code:
client.sort(query, function (err, reps))
{
reps.forEach(function (reply, i){
client.sinter(){
//dosomething
}
}
}
My question is simple... is it possible to pipeline the first sort's result into the next sinter command without using javascript's forEach ?