Skip to content

Commit 5b0d99e

Browse files
committed
Disable deep serialization for now
1 parent b4cfb89 commit 5b0d99e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/browser/extension/inject/pageScript.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,13 @@ window.devToolsExtension = function(config = {}) {
1212
let isMonitored = false;
1313

1414
function stringify(obj) {
15+
return jsan.stringify(obj);
16+
/*
1517
return jsan.stringify(obj, function(key, value) {
1618
if (value && value.toJS) { return value.toJS(); }
1719
return value;
1820
}, null, true);
21+
*/
1922
}
2023

2124
function relaySerialized(message) {

0 commit comments

Comments
 (0)