xml-twig 1.6.0 → 1.6.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/twig.js +1 -1
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  },
6
6
  "name": "xml-twig",
7
7
  "description": "Node module for processing huge XML documents in tree mode",
8
- "version": "1.6.0",
8
+ "version": "1.6.1",
9
9
  "main": "twig.js",
10
10
  "directories": {
11
11
  "doc": "doc"
package/twig.js CHANGED
@@ -63,7 +63,7 @@ const Any = new AnyHandler();
63
63
  * @property {boolean} [trim] - If `true`, then turn any whitespace into a single space. Text and comments are trimmed.
64
64
  * @property {boolean} [resumeAfterError] - If `true` then parser continues reading after an error. Otherwise it throws exception.
65
65
  * @property {boolean} [partial] - If `true` then unhandled elements are purged.
66
- * @property {string} [file] - The filename to be parsed. Just used for information and logging purpose.
66
+ * @property {string} [file] - Optional. The name of file to be parsed. Just used for information and logging purpose.
67
67
  * @example { method: 'expat', xmlns: true }
68
68
  * @default { method: 'sax', xmlns: false, trim: true, resumeAfterError: false, partial: false }
69
69
  */