UNPKG

@jrc03c/js-math-tools

Version:
8 lines (5 loc) 158 B
import { stats } from "./stats.mjs" function median(arr, shouldDropNaNs) { return stats(arr, { shouldDropNaNs, median: true }).median } export { median }