From 61578f4dca0ec2438cbce3c2ddbbccdf3971342a Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 21 Aug 2014 20:24:09 -0700 Subject: [PATCH] Add missing semicolon. [ci skip] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index ee2b5ec54..db7626ce3 100644 --- a/lodash.js +++ b/lodash.js @@ -6314,7 +6314,7 @@ return hasOwnProperty.call(cache, key) ? cache[key] : (cache[key] = func.apply(this, arguments)); - } + }; memoized.cache = {}; return memoized; }