You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to store structures like AVL Trees and others that reference "themselves", the Stringify function throws this error. There's an option when calling the function to avoid this error, but I'm not sure how it impacts the rest of its usage in this module.
The text was updated successfully, but these errors were encountered:
Yeah, this is a known issue with JSON. There is actually a lot of things doesn't support, including circular references, functions, blessed objects (classes), and more. I'm afraid there isn't much I can do, unless I pull in a 3rd party library, which would slow down the JSON stringify/parse.
I will leave this issue open until I can figure out a solution, but I don't see how I can do it while keeping up the performance level.
megahash/main.js
Line 28 in cc0c1da
When trying to store structures like AVL Trees and others that reference "themselves", the Stringify function throws this error. There's an option when calling the function to avoid this error, but I'm not sure how it impacts the rest of its usage in this module.
The text was updated successfully, but these errors were encountered: