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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xslt-processor",
3
- "version": "2.0.0",
3
+ "version": "2.0.1",
4
4
  "description": "A JavaScript XSLT Processor",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -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 TODO
90
- * @param template TODO
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;