Fix serialization to dictionaries
This commit is contained in:
parent
343b2fb560
commit
147c02bdfd
3 changed files with 25 additions and 1 deletions
|
@ -33,6 +33,14 @@ function GetCircularReplacerKeepDataStructure()
|
|||
return;
|
||||
}
|
||||
|
||||
if (key === 'containers') {
|
||||
return Object.fromEntries(value);
|
||||
}
|
||||
|
||||
if (key === 'symbols') {
|
||||
return Object.fromEntries(value);
|
||||
}
|
||||
|
||||
return value;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue