From b87a18bd80867525a18363b84a8cd10a7b953349 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 18 Jul 2015 19:36:21 -0700 Subject: [PATCH] Remove `toFunction` from `_.unzipWith`. --- lodash.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lodash.js b/lodash.js index 9493acef0..41915becd 100644 --- a/lodash.js +++ b/lodash.js @@ -5284,7 +5284,6 @@ if (iteratee == null) { return result; } - iteratee = toFunction(iteratee); return arrayMap(result, function(group) { return arrayReduce(group, iteratee, undefined, true); });