xslt-processor
Advanced tools
Comparing version 3.1.0 to 3.2.0
{ | ||
"name": "xslt-processor", | ||
"version": "3.1.0", | ||
"version": "3.2.0", | ||
"description": "A JavaScript XSLT Processor", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -40,2 +40,3 @@ import { XDocument, XNode, XmlParser } from '../dom'; | ||
version: string; | ||
firstTemplateRan: boolean; | ||
constructor(options?: Partial<XsltOptions>); | ||
@@ -137,2 +138,10 @@ /** | ||
/** | ||
* Implements `<xsl:import>`. For now the code is nearly identical to `<xsl:include>`, but there's | ||
* no precedence evaluation implemented yet. | ||
* @param context The Expression Context. | ||
* @param template The template. | ||
* @param output The output. | ||
*/ | ||
protected xsltImport(context: ExprContext, template: XNode, output?: XNode): Promise<void>; | ||
/** | ||
* Implements `xsl:include`. | ||
@@ -139,0 +148,0 @@ * @param context The Expression Context. |
@@ -40,2 +40,3 @@ import { XDocument, XNode, XmlParser } from '../dom'; | ||
version: string; | ||
firstTemplateRan: boolean; | ||
constructor(options?: Partial<XsltOptions>); | ||
@@ -137,2 +138,10 @@ /** | ||
/** | ||
* Implements `<xsl:import>`. For now the code is nearly identical to `<xsl:include>`, but there's | ||
* no precedence evaluation implemented yet. | ||
* @param context The Expression Context. | ||
* @param template The template. | ||
* @param output The output. | ||
*/ | ||
protected xsltImport(context: ExprContext, template: XNode, output?: XNode): Promise<void>; | ||
/** | ||
* Implements `xsl:include`. | ||
@@ -139,0 +148,0 @@ * @param context The Expression Context. |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
1385369
10621