Cleanup _.throttle return statement.

This commit is contained in:
John-David Dalton
2013-10-08 19:33:59 -07:00
parent ce64c8e7d1
commit 253642a85e

View File

@@ -5809,8 +5809,7 @@
debounceOptions.maxWait = wait;
debounceOptions.trailing = trailing;
var result = debounce(func, wait, debounceOptions);
return result;
return debounce(func, wait, debounceOptions);
}
/**