From 5200c8d659fa273c79e8e15a0d9bebbacde7793f Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 1 Jul 2014 12:21:11 -0700 Subject: [PATCH] Remove unneeded `n` validation from `_.before`. --- lodash.js | 1 - 1 file changed, 1 deletion(-) diff --git a/lodash.js b/lodash.js index 85d6478b3..ab3ed0ad8 100644 --- a/lodash.js +++ b/lodash.js @@ -5494,7 +5494,6 @@ if (!isFunction(func)) { throw new TypeError(funcErrorText); } - n = nativeIsFinite(n = +n) ? n : 0; return function() { if (--n > 0) { result = func.apply(this, arguments);