@absolutejs/absolute 0.19.0-beta.753 → 0.19.0-beta.755
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/angular/browser.js
CHANGED
|
@@ -9426,8 +9426,11 @@ var preserveAcrossHmr = (instance, key) => {
|
|
|
9426
9426
|
const fullKey = buildCacheKey(instance, key);
|
|
9427
9427
|
if (fullKey === null)
|
|
9428
9428
|
return;
|
|
9429
|
-
|
|
9430
|
-
|
|
9429
|
+
const keyMap = getKeyMap();
|
|
9430
|
+
if (!keyMap.has(instance)) {
|
|
9431
|
+
getTracker().add(new WeakRef(instance));
|
|
9432
|
+
}
|
|
9433
|
+
keyMap.set(instance, fullKey);
|
|
9431
9434
|
if (!getRebootFlag().value)
|
|
9432
9435
|
return;
|
|
9433
9436
|
const restored = restoreFromCacheCore(instance, fullKey);
|
|
@@ -10222,5 +10225,5 @@ export {
|
|
|
10222
10225
|
ABSOLUTE_HTTP_TRANSFER_CACHE_SKIP_HEADER
|
|
10223
10226
|
};
|
|
10224
10227
|
|
|
10225
|
-
//# debugId=
|
|
10228
|
+
//# debugId=830977C652419D0C64756E2164756E21
|
|
10226
10229
|
//# sourceMappingURL=browser.js.map
|