Checks if every item passes the truth test of an expression given in the closure
collectionEvery(collection, closure [, parallel] [, maxThreads])
returns boolean
Name | Type | Required | Default | Description |
---|---|---|---|---|
collection | any | Yes | ||
closure | function | Yes | ||
parallel | boolean | No | ||
maxThreads | numeric | No | 20 |
When only mail items are provided
coll = [{
id: 0,
type: 'mail'
},{
id: 1,
type: 'mail'
}];
onlyMails = collectionEvery(coll,function(item) {
return item.type is 'mail';
});
writeOutput(onlyMails);
When comment items are provided besides mail items as well
coll = [{
id: 0,
type: 'mail'
},{
id: 1,
type: 'mail'
},{
id: 2,
type: 'comment'
}];
onlyMails = collectionEvery(coll,function(item) {
return item.type is 'mail';
});
writeOutput(onlyMails);