From 80f3cda31b51715feaaea6725555b100f73edddd Mon Sep 17 00:00:00 2001 From: coderaiser Date: Fri, 23 May 2014 08:18:42 -0400 Subject: [PATCH] chore(util) exec.ret: add ";" --- lib/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util.js b/lib/util.js index ba0afd9c..7af0abec 100644 --- a/lib/util.js +++ b/lib/util.js @@ -695,7 +695,7 @@ */ exec.ret = function() { var result, - args = Util.slice(arguments) + args = Util.slice(arguments); args.unshift(exec); result = exec.with.apply(null, args);