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
undefined
When running this, value, _ = vm.Run("{}"), the resultant value is undefined instead of an Object.
value, _ = vm.Run("{}")
value
Other types work:
value, _ = vm.Run("1") // value.toString() is 1
value, _ = vm.Run("true") // value.toString() is true
value, _ = vm.Run("[1, 2, 3]") // value.toString() is 1, 2, 3
As an extension, an error is returned when using { "a": 1 }. Error: (anonymous): Line 1:5 Unexpected token :
{ "a": 1 }
(anonymous): Line 1:5 Unexpected token :
The text was updated successfully, but these errors were encountered:
I think this is related to #430
Sorry, something went wrong.
No branches or pull requests
When running this,
value, _ = vm.Run("{}")
, the resultantvalue
is undefined instead of an Object.Other types work:
As an extension, an error is returned when using
{ "a": 1 }
. Error:(anonymous): Line 1:5 Unexpected token :
The text was updated successfully, but these errors were encountered: