Fix serialization of object properties

This commit is contained in:
Gert Hengeveld 2022-06-24 20:19:44 +02:00
parent 8003c9b20f
commit 5444a76613

View File

@ -415,6 +415,11 @@ export class Instrumenter {
) { ) {
return { __class__: { name: value.constructor.name } }; return { __class__: { name: value.constructor.name } };
} }
if (Object.prototype.toString.call(value) === '[object Object]') {
return Object.fromEntries(
Object.entries(value).map(([key, val]) => [key, serializeValues(val)])
);
}
return value; return value;
}; };