Your IP : 216.73.216.74


Current Path : /usr/local/lib/node_modules/@google/gemini-cli/node_modules/es-toolkit/dist/math/
Upload File :
Current File : //usr/local/lib/node_modules/@google/gemini-cli/node_modules/es-toolkit/dist/math/meanBy.mjs

import { mean } from './mean.mjs';

function meanBy(items, getValue) {
    const nums = items.map(x => getValue(x));
    return mean(nums);
}

export { meanBy };