@auth0/auth0-spa-js 1.20.0 → 1.20.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth0-spa-js.development.js +4 -3
- package/dist/auth0-spa-js.development.js.map +1 -1
- package/dist/auth0-spa-js.production.esm.js +1 -1
- package/dist/auth0-spa-js.production.esm.js.map +1 -1
- package/dist/auth0-spa-js.production.js +1 -1
- package/dist/auth0-spa-js.production.js.map +1 -1
- package/dist/lib/auth0-spa-js.cjs.js +4 -3
- package/dist/lib/auth0-spa-js.cjs.js.map +1 -1
- package/dist/typings/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/cache/cache-manager.ts +4 -1
- package/src/version.ts +1 -1
|
@@ -384,10 +384,10 @@
|
|
|
384
384
|
(module.exports = function (key, value) {
|
|
385
385
|
return sharedStore[key] || (sharedStore[key] = value !== undefined ? value : {});
|
|
386
386
|
})('versions', []).push({
|
|
387
|
-
version: '3.21.
|
|
387
|
+
version: '3.21.1',
|
|
388
388
|
mode: 'global',
|
|
389
389
|
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
|
|
390
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.21.
|
|
390
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.21.1/LICENSE',
|
|
391
391
|
source: 'https://github.com/zloirock/core-js'
|
|
392
392
|
});
|
|
393
393
|
});
|
|
@@ -4225,7 +4225,7 @@
|
|
|
4225
4225
|
|
|
4226
4226
|
var Lock = unwrapExports(browserTabsLock);
|
|
4227
4227
|
|
|
4228
|
-
var version = '1.20.
|
|
4228
|
+
var version = '1.20.1';
|
|
4229
4229
|
|
|
4230
4230
|
/**
|
|
4231
4231
|
* @ignore
|
|
@@ -4871,6 +4871,7 @@
|
|
|
4871
4871
|
if (!keys)
|
|
4872
4872
|
return [2 /*return*/];
|
|
4873
4873
|
matchedKey = this.matchExistingCacheKey(cacheKey, keys);
|
|
4874
|
+
if (!matchedKey) return [3 /*break*/, 4];
|
|
4874
4875
|
return [4 /*yield*/, this.cache.get(matchedKey)];
|
|
4875
4876
|
case 3:
|
|
4876
4877
|
wrappedEntry = _b.sent();
|