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
https://github.com/otalk/jxt/blob/master/lib/stanza.js#L104
On this line we have: else if (val !== undefined && val !== false && val !== '') , but what if my value is false and i need it?
The text was updated successfully, but these errors were encountered:
Ran into this here as well.
Obvious workaround is to use string false.
Would the changes suggested by @sarumjanuch be of interest?
Sorry, something went wrong.
Include non-undefined data that is false-y instead of omitting.
79442d1
See #10
See #11. Once the tests in stanza.io are passing with this change, I'll merge it.
No branches or pull requests
https://github.com/otalk/jxt/blob/master/lib/stanza.js#L104
On this line we have: else if (val !== undefined && val !== false && val !== '') , but what if my value is false and i need it?
The text was updated successfully, but these errors were encountered: