fix baseMean usage in mean (#2985)

This commit is contained in:
Michał Lipiński
2017-02-09 17:20:03 +01:00
committed by John-David Dalton
parent 5fe15a160d
commit 2ab6da5b51

View File

@@ -14,7 +14,7 @@ import identity from './identity.js'
* // => 5 * // => 5
*/ */
function mean(array) { function mean(array) {
return mean(array, identity) return baseMean(array, identity)
} }
export default mean export default mean