| 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/medianBy.js |
'use strict';
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const median = require('./median.js');
function medianBy(items, getValue) {
const nums = items.map(x => getValue(x));
return median.median(nums);
}
exports.medianBy = medianBy;