Cleanup _.max and _.min.

This commit is contained in:
John-David Dalton
2014-07-14 07:57:46 -07:00
parent db483df9a6
commit 69238bf8e8

View File

@@ -5001,7 +5001,7 @@
if (noIterator && !isStr) {
var index = -1,
iterable = isArr ? collection : values(collection),
iterable = toIterable(collection),
length = iterable.length;
while (++index < length) {
@@ -5084,7 +5084,7 @@
if (noIterator && !isStr) {
var index = -1,
iterable = isArr ? collection : values(collection),
iterable = toIterable(collection),
length = iterable.length;
while (++index < length) {