Add missing semicolon. [ci skip]

This commit is contained in:
John-David Dalton
2014-08-21 20:24:09 -07:00
parent 9f4a7fc0da
commit 61578f4dca

View File

@@ -6314,7 +6314,7 @@
return hasOwnProperty.call(cache, key)
? cache[key]
: (cache[key] = func.apply(this, arguments));
}
};
memoized.cache = {};
return memoized;
}