diff --git a/src/core/rebind.js b/src/core/rebind.js index eddb11bd..d6118464 100644 --- a/src/core/rebind.js +++ b/src/core/rebind.js @@ -11,6 +11,6 @@ d3.rebind = function(target, source) { function d3_rebind(target, source, method) { return function() { var value = method.apply(source, arguments); - return arguments.length || value === source ? target : value; + return value === source ? target : value; }; }