We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Start by rendering a page, get this result, click on item 1:
Save as a global:
When I run the global function the result is undefined:
undefined
I have seen this function produce detailed output before. So either I'm doing something wrong or there's a bug.
The text was updated successfully, but these errors were encountered:
Talked this over with another dev and the issue is probably due to circular references in the object. If you want to fix that:
const getCircularReplacer = () => { const seen = new WeakSet(); return (key, value) => { if (typeof value === 'object' && value !== null) { if (seen.has(value)) { return; } seen.add(value); } return value; }; }; JSON.stringify(obj, getCircularReplacer());
Sorry, something went wrong.
Related #250
No branches or pull requests
Start by rendering a page, get this result, click on item 1:
Save as a global:
When I run the global function the result is
undefined
:I have seen this function produce detailed output before. So either I'm doing something wrong or there's a bug.
The text was updated successfully, but these errors were encountered: