Skip to content

Commit 2aa2f82

Browse files
committed
filterWithError
1 parent c99537a commit 2aa2f82

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

lib/async.js

+18
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,24 @@
121121
};
122122
async.forEach = async.each;
123123

124+
async.filterWithError = function (iterable, iterator, callback) {
125+
async.map(iterable, function (each, callback) {
126+
iterator(each, function (err, condition) {
127+
callback(null, { each: each, condition: condition });
128+
});
129+
}, function (err, results) {
130+
if (err) {
131+
return callback(err);
132+
}
133+
134+
callback(null, results.filter(function (each) {
135+
return each.condition;
136+
}).map(function (each) {
137+
return each.each;
138+
}));
139+
});
140+
};
141+
124142
async.eachSeries = function (arr, iterator, callback) {
125143
callback = callback || function () {};
126144
if (!arr.length) {

test/test-async.js

+12
Original file line numberDiff line numberDiff line change
@@ -1215,6 +1215,18 @@ exports['filterSeries'] = function(test){
12151215
});
12161216
};
12171217

1218+
exports['filterWithError'] = function(test){
1219+
async.filterWithError([3,1,2], function (each, callback) {
1220+
filterIterator(each, function (result) {
1221+
callback(null, result);
1222+
});
1223+
}, function(err, results){
1224+
test.equals(err, null);
1225+
test.same(results, [3,1]);
1226+
test.done();
1227+
});
1228+
};
1229+
12181230
exports['select alias'] = function(test){
12191231
test.equals(async.select, async.filter);
12201232
test.done();

0 commit comments

Comments
 (0)