Deprecate GetCircularReplacer and make GetCircularReplacer dotnet by default. Format of the save is now incompatible with old versions.
This commit is contained in:
parent
6786417349
commit
621dc9b53f
6 changed files with 19 additions and 43 deletions
|
@ -10,11 +10,13 @@ const getCircularReplacer = () => {
|
|||
}
|
||||
|
||||
if (key === 'containers') {
|
||||
return Array.from(value.entries());
|
||||
return [...value.entries()]
|
||||
.map(([Key, Value]) => ({ Key, Value }));
|
||||
}
|
||||
|
||||
if (key === 'symbols') {
|
||||
return Array.from(value.entries());
|
||||
return [...value.entries()]
|
||||
.map(([Key, Value]) => ({ Key, Value }));
|
||||
}
|
||||
|
||||
if (key === 'linkedContainers') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue