From 182cb8ab2509a7b75310fc07903574a93c8264b1 Mon Sep 17 00:00:00 2001 From: jdalton Date: Wed, 11 Feb 2015 22:50:22 -0800 Subject: [PATCH] Simplify lazy `pluck` and `where`. --- lodash.src.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.src.js b/lodash.src.js index fbd783a5c..84834c952 100644 --- a/lodash.src.js +++ b/lodash.src.js @@ -11097,7 +11097,7 @@ createCallback = index ? baseMatches : baseProperty; LazyWrapper.prototype[methodName] = function(value) { - return this[operationName](createCallback(index ? value : (value + ''))); + return this[operationName](createCallback(value)); }; });