mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-04-14 19:47:03 +00:00
8 lines
144 B
JavaScript
8 lines
144 B
JavaScript
|
|
import _ from 'lodash';
|
||
|
|
|
||
|
|
module.exports = function(items) {
|
||
|
|
return _.reduce(items, (function(m, v) {
|
||
|
|
return m + (v ? 1 : 0);
|
||
|
|
}), 0);
|
||
|
|
};
|