-
-
Notifications
You must be signed in to change notification settings - Fork 225
New issue
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
Expose null and undefined constant values #163
Conversation
Codecov Report
@@ Coverage Diff @@
## master #163 +/- ##
==========================================
+ Coverage 96.94% 96.99% +0.05%
==========================================
Files 12 12
Lines 458 466 +8
==========================================
+ Hits 444 452 +8
Misses 9 9
Partials 5 5
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense; thank you.
9440663
to
26b531d
Compare
Builds on #162
cc @genevieve
Currently, there is no simple way of getting
null
orundefined
JS values from v8go. There are workarounds like running a script to get these values, but this shouldn't be necessary.For instance, this would be useful in #160 for explicitly passing the
undefined
value as an explicit function call receiver