mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-05 09:27:49 +00:00
Remove baseIteratee and castFunction.
This commit is contained in:
4
mean.js
4
mean.js
@@ -1,4 +1,4 @@
|
||||
import baseMean from './_baseMean.js';
|
||||
import baseMean from './meanBy.js';
|
||||
import identity from './identity.js';
|
||||
|
||||
/**
|
||||
@@ -16,7 +16,7 @@ import identity from './identity.js';
|
||||
* // => 5
|
||||
*/
|
||||
function mean(array) {
|
||||
return baseMean(array, identity);
|
||||
return mean(array, identity);
|
||||
}
|
||||
|
||||
export default mean;
|
||||
|
||||
Reference in New Issue
Block a user