summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPG Herveou <pgherveou@gmail.com>2012-04-29 17:10:21 +0300
committerPG Herveou <pgherveou@gmail.com>2012-04-29 17:10:21 +0300
commit16de51a63bbf836b34b9a974dc7d445195b9f7c0 (patch)
tree1a9e0e429250a161a20b5acbba0bc0ea05babbde
parent035c5c81938d066fe7b3792cf9eba9f9f8c19065 (diff)
downloadasync-16de51a63bbf836b34b9a974dc7d445195b9f7c0.tar.gz
without this ';' uglify throw errors when trying to build with strict_semicolons option
-rw-r--r--lib/async.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/async.js b/lib/async.js
index 52276d6..d07e0d4 100644
--- a/lib/async.js
+++ b/lib/async.js
@@ -686,7 +686,7 @@
async.unmemoize = function (fn) {
return function () {
return (fn.unmemoized || fn).apply(null, arguments);
- }
+ };
};
}());