From 52e910d981ee5ec0287f83d0612bacaf84b6c3b7 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Wed, 28 May 2014 02:27:04 -0400 Subject: [PATCH] refactor(util) exec.with --- lib/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util.js b/lib/util.js index aa930834..6fed1963 100644 --- a/lib/util.js +++ b/lib/util.js @@ -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);