Simplify lazy pluck and where.

This commit is contained in:
jdalton
2015-02-11 22:50:22 -08:00
parent ece341d868
commit 182cb8ab25

View File

@@ -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));
};
});