From 253642a85e710b193006d07e7d3b88552e0dea2b Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Tue, 8 Oct 2013 19:33:59 -0700 Subject: [PATCH] Cleanup `_.throttle` return statement. --- lodash.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 97261c26d..10f00666c 100644 --- a/lodash.js +++ b/lodash.js @@ -5809,8 +5809,7 @@ debounceOptions.maxWait = wait; debounceOptions.trailing = trailing; - var result = debounce(func, wait, debounceOptions); - return result; + return debounce(func, wait, debounceOptions); } /**