my-idlers/node_modules/collect.js/dist/methods/countBy.js
cp6 fd22b0bf58 V2 (Laravel re-make)
V2 (Laravel re-make)
2022-03-06 02:02:12 +11:00

11 lines
286 B
JavaScript

'use strict';
module.exports = function countBy() {
var fn = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : function (value) {
return value;
};
return new this.constructor(this.items).groupBy(fn).map(function (value) {
return value.count();
});
};