diff --git a/lodash.js b/lodash.js index 8d573e148..d01da7dd9 100644 --- a/lodash.js +++ b/lodash.js @@ -16421,10 +16421,7 @@ }); LazyWrapper.prototype.reject = function(predicate) { - predicate = getIteratee(predicate, 3); - return this.filter(function(value) { - return !predicate(value); - }); + return this.filter(negate(getIteratee(predicate))); }; LazyWrapper.prototype.slice = function(start, end) {