diff --git a/lodash.js b/lodash.js index 5c7f1cc79..f59b71f4a 100644 --- a/lodash.js +++ b/lodash.js @@ -1257,7 +1257,9 @@ return func.call(thisArg, value, other, key, object, source); }; } - return bind(func, thisArg); + return function() { + return func.apply(thisArg, arguments); + }; } /**