From 5654d17332968437b43f255f7c6a43d25696e8ad Mon Sep 17 00:00:00 2001 From: coderaiser Date: Fri, 23 May 2014 03:34:05 -0400 Subject: [PATCH] refactor(util) ExecProto: Util.exec -> exec --- lib/util.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/util.js b/lib/util.js index 1742cd90..a4682168 100644 --- a/lib/util.js +++ b/lib/util.js @@ -785,9 +785,9 @@ var ret; if (condition) - Util.exec(callback, condition); + exec(callback, condition); else - Util.exec(func, callback); + exec(func, callback); return ret; }; @@ -802,7 +802,7 @@ if (func) { func = func.bind(obj); - ret = Util.exec(func, arg); + ret = exec(func, arg); } return ret; @@ -838,7 +838,7 @@ } function callCheckFunc(num, func) { - Util.exec(func, function() { + exec(func, function() { checkFunc(num, arguments); }); }