I am using caolan's async.js. I'm confused why the callback is getting called before all of the iterators are done. When I run the following code:
async.filter(matched_objects.fields, function(item, callback) {
console.log('checking field: ' + item.id);
if(item.id == 130 || item.id == 131) {
console.log('calling field true: ' + item.id);
callback(true);
}
callback(false);
},
function(fieldResults) {
console.log('fieldsResults.length=' + fieldResults.length);
});
I get the following output:
checking field: 130
calling field true: 130
fieldsResults.length=1
checking field: 131
calling field true: 131
It doesn't make any sense to me that the console.log in the callback is getting called before the second results.fields item is checked in the filter loop.