9 lines
172 B
JavaScript
9 lines
172 B
JavaScript
import { median } from './median.mjs';
|
|
|
|
function medianBy(items, getValue) {
|
|
const nums = items.map(x => getValue(x));
|
|
return median(nums);
|
|
}
|
|
|
|
export { medianBy };
|