refactor(util) exec.with

This commit is contained in:
coderaiser 2014-05-28 02:27:04 -04:00
parent 7c59ae119d
commit 52e910d981

View file

@ -699,7 +699,7 @@
exec.with = function(callback) {
var result,
bind = Function.prototype.bind;
bind = Function.bind;
arguments[0] = null;
result = bind.apply(callback, arguments);