We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
selfClosingTags
1 parent e5a68f1 commit c956419Copy full SHA for c956419
src/xslt/xslt.ts
@@ -88,8 +88,8 @@ export class Xslt {
88
this.xPath = new XPath();
89
this.matchResolver = new MatchResolver();
90
this.options = {
91
- escape: options.escape || true,
92
- selfClosingTags: options.selfClosingTags || true,
+ escape: options.escape === true,
+ selfClosingTags: options.selfClosingTags === true,
93
parameters: options.parameters || []
94
};
95
this.outputMethod = 'xml';
0 commit comments