habitica-self-host/common/script/libs/countExists.js

8 lines
144 B
JavaScript
Raw Normal View History

2016-03-08 18:35:02 +00:00
import _ from 'lodash';
module.exports = function(items) {
return _.reduce(items, (function(m, v) {
return m + (v ? 1 : 0);
}), 0);
};