Simplify baseCallback.

This commit is contained in:
John-David Dalton
2014-06-24 20:56:50 -07:00
parent 3a221f9b6e
commit 72fcb4ebda

View File

@@ -1257,7 +1257,9 @@
return func.call(thisArg, value, other, key, object, source);
};
}
return bind(func, thisArg);
return function() {
return func.apply(thisArg, arguments);
};
}
/**