xslt-processor 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/umd/xslt/xslt.d.ts +2 -2
- package/umd/xslt-processor.js +1 -1
- package/umd/xslt-processor.js.map +1 -1
- package/xpath/xpath.js +8 -8
- package/xslt/xslt.d.ts +2 -2
- package/xslt/xslt.js +5 -3
- package/xslt/xslt.js.map +1 -1
package/package.json
CHANGED
package/umd/xslt/xslt.d.ts
CHANGED
|
@@ -86,8 +86,8 @@ export declare class Xslt {
|
|
|
86
86
|
* sort order specified by xsl:sort child nodes of the current
|
|
87
87
|
* template node. This happens before the operation specified by the
|
|
88
88
|
* current template node is executed.
|
|
89
|
-
* @param context
|
|
90
|
-
* @param template
|
|
89
|
+
* @param context The expression context.
|
|
90
|
+
* @param template The template node.
|
|
91
91
|
* @todo case-order is not implemented.
|
|
92
92
|
*/
|
|
93
93
|
protected xsltSort(context: ExprContext, template: XNode): void;
|