Remove arity hint from lazy reject.

This commit is contained in:
John-David Dalton
2016-07-23 20:49:55 -07:00
parent 80dbd4cbfa
commit 694e1175a1

View File

@@ -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) {