Bump to v4.11.2.

This commit is contained in:
John-David Dalton
2016-04-19 22:21:01 -07:00
parent 692aabae13
commit 35805ec250
87 changed files with 342 additions and 163 deletions

4
max.js
View File

@@ -1,5 +1,5 @@
import baseExtremum from './_baseExtremum';
import gt from './gt';
import baseGt from './_baseGt';
import identity from './identity';
/**
@@ -22,7 +22,7 @@ import identity from './identity';
*/
function max(array) {
return (array && array.length)
? baseExtremum(array, identity, gt)
? baseExtremum(array, identity, baseGt)
: undefined;
}