diff --git a/underscore.js b/underscore.js index 2345a6d05..478688115 100644 --- a/underscore.js +++ b/underscore.js @@ -213,7 +213,7 @@ _.invoke = function(obj, method) { var args = slice.call(arguments, 2); return _.map(obj, function(value) { - return (_.isFunction(method) ? method || value : value[method]).apply(value, args); + return (_.isFunction(method) ? method : value[method]).apply(value, args); }); };