| Current Path : /usr/local/lib/node_modules/@google/gemini-cli/node_modules/es-toolkit/dist/math/ |
| Current File : //usr/local/lib/node_modules/@google/gemini-cli/node_modules/es-toolkit/dist/math/meanBy.js |
'use strict';
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const mean = require('./mean.js');
function meanBy(items, getValue) {
const nums = items.map(x => getValue(x));
return mean.mean(nums);
}
exports.meanBy = meanBy;