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
I haven't figured out what's going on with this change, but it's odd, and it's making some of my tests fail.
const { NodeVM } = require('vm2') const vm = new NodeVM({}) const result = vm.run('{}', 'vm.js') console.log(result)
Output on 3.9.5:
{}
Output on 3.9.6:
Object {}
The text was updated successfully, but these errors were encountered:
Thanks, this is an oversight from me. I set the Symbol.toStringTag for Objects in the Proxy which should not happen.
Symbol.toStringTag
Sorry, something went wrong.
Should be fixed in v3.9.7
No branches or pull requests
I haven't figured out what's going on with this change, but it's odd, and it's making some of my tests fail.
Output on 3.9.5:
Output on 3.9.6:
The text was updated successfully, but these errors were encountered: