mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-03 08:37:49 +00:00
Bump to v4.11.2.
This commit is contained in:
4
min.js
4
min.js
@@ -1,4 +1,4 @@
|
||||
define(['./_baseExtremum', './identity', './lt'], function(baseExtremum, identity, lt) {
|
||||
define(['./_baseExtremum', './_baseLt', './identity'], function(baseExtremum, baseLt, identity) {
|
||||
|
||||
/** Used as a safe reference for `undefined` in pre-ES5 environments. */
|
||||
var undefined;
|
||||
@@ -23,7 +23,7 @@ define(['./_baseExtremum', './identity', './lt'], function(baseExtremum, identit
|
||||
*/
|
||||
function min(array) {
|
||||
return (array && array.length)
|
||||
? baseExtremum(array, identity, lt)
|
||||
? baseExtremum(array, identity, baseLt)
|
||||
: undefined;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user