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
In soap response there are whitespaces in element content.
I want them to be preserved, but from the code in strong-soap it seems that the text.trim() method is hardcoded. It does not accept any options.
Specifically I have an element like this and i need the multiple whitespace to be preserved:
<element> </element>
/src/parser/xmlHandler.js:
p.ontext = function(text) { text = text && text.trim(); if (!text.length) return; ... }
Thanks for your reply.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In soap response there are whitespaces in element content.
I want them to be preserved, but from the code in strong-soap it seems that the text.trim() method is hardcoded.
It does not accept any options.
Specifically I have an element like this and i need the multiple whitespace to be preserved:
<element> </element>
/src/parser/xmlHandler.js:
p.ontext = function(text) { text = text && text.trim(); if (!text.length) return; ... }
Thanks for your reply.
The text was updated successfully, but these errors were encountered: