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
Some updates to the XMLBuilder no longer allow for spaces in the name of the node.
BUT thankfully they did add an option to perform noValidation on the name.
noValidation
The issue is that xml2js doesnt allow me to pass the options through to XMLBuilder. Would you object to changing the following code?
rootElement = builder.create(rootName, this.options.xmldec, this.options.doctype, { headless: this.options.headless, allowSurrogateChars: this.options.allowSurrogateChars });
TO THIS:
rootElement = builder.create(rootName, this.options.xmldec, this.options.doctype, { ...this.options });
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some updates to the XMLBuilder no longer allow for spaces in the name of the node.
BUT thankfully they did add an option to perform
noValidation
on the name.The issue is that xml2js doesnt allow me to pass the options through to XMLBuilder. Would you object to changing the following code?
TO THIS:
The text was updated successfully, but these errors were encountered: