We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53838a3 commit 17a34bcCopy full SHA for 17a34bc
test/test.js
@@ -346,12 +346,12 @@
346
347
/** Used to test pseudo private map caches. */
348
var mapCaches = (function() {
349
- var MapCache = _.memoize.Cache;
+ var MapCache = (_.memoize || lodashStable.memoize).Cache;
350
var result = {
351
'Hash': new MapCache().__data__.hash.constructor,
352
'MapCache': MapCache
353
};
354
- _.isMatchWith({ 'a': 1 }, { 'a': 1 }, function() {
+ (_.isMatchWith || lodashStable.isMatchWith)({ 'a': 1 }, { 'a': 1 }, function() {
355
var stack = lodashStable.last(arguments);
356
result.ListCache = stack.__data__.constructor;
357
result.Stack = stack.constructor;
0 commit comments