Remove baseIteratee and castFunction.

This commit is contained in:
John-David Dalton
2017-01-09 17:17:03 -08:00
parent efcf51c7bf
commit 65654f8f9e
96 changed files with 140 additions and 537 deletions

View File

@@ -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;