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
having a simple object like (typescript):
{ keyA: "keyA", keyB: undefined }
the resulting Builder of that object it would be something like
<xml> <keyA>keyA</KeyA> </keyB> </xml>
it would be better having an option in the builder that will prune those empty elements, so it can be achieved this result instead
prune
<xml> <keyA>keyA</KeyA> </xml>
The text was updated successfully, but these errors were encountered:
you can build object like:
{ "xml": { "keyA": { "_": "keyA" } } }
keyB can control by js
Sorry, something went wrong.
you can build object like: { "xml": { "keyA": { "_": "keyA" } } } keyB can control by js
i don't understand what you mean. you posted a JSON. what i am asking is to prune the empty XML tags in case there are.
No branches or pull requests
having a simple object like (typescript):
the resulting Builder of that object it would be something like
it would be better having an option in the builder that will
prune
those empty elements, so it can be achieved this result insteadThe text was updated successfully, but these errors were encountered: