Remove toFunction from _.unzipWith.

This commit is contained in:
John-David Dalton
2015-07-18 19:36:21 -07:00
parent 6d650a48db
commit b87a18bd80

View File

@@ -5284,7 +5284,6 @@
if (iteratee == null) {
return result;
}
iteratee = toFunction(iteratee);
return arrayMap(result, function(group) {
return arrayReduce(group, iteratee, undefined, true);
});