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
min.js
View File

@@ -1,6 +1,6 @@
import baseExtremum from './_baseExtremum';
import baseLt from './_baseLt';
import identity from './identity';
import lt from './lt';
/**
* Computes the minimum value of `array`. If `array` is empty or falsey,
@@ -22,7 +22,7 @@ import lt from './lt';
*/
function min(array) {
return (array && array.length)
? baseExtremum(array, identity, lt)
? baseExtremum(array, identity, baseLt)
: undefined;
}