Skip to main content
Module

x/rambda/source/mean.js

Faster and smaller alternative to Ramda
Go to Latest
File
import {sum} from './sum'
export function mean(list) { return sum(list) / list.length}