mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 22:57:21 +01: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);
|
|
};
|