New method of calling module:
var js2xmlparser = require("js2xmlparser");
var root = "root";
var data = {hello: "world"};
var options = {};
// old method (no longer works):
// js2xmlparser(root, data, options);
// new method:
js2xmlparser.parse(root, data, options);
- New options and changes to functionality of some existing options:
- declarationcontains additional options
- attributeStringhas additional functionality
- valueStringhas additional functionality
- The functionality provided by prettyPrintingis now provided by the newformatoption, which contains additional options
- arrayMapis now- wrapHandlersto reflect the fact that wrapping is
provided for both arrays and ES2015 sets
- convertMapis now- typeHandlersto match the name change to- arrayMap
- The functionality provided by useCDATAis now provided by the newcdataInvalidCharsandcdataKeysoptions, which also provide additional
functionality
- Added support for document type definitions using the dtdoption
1.0.0
- First stable release
- Add arrayMap feature
- Switch to semantic versioning
- Switch to Apache 2.0 license
0.1.9
0.1.8
- Reconcile readme and tests with examples
0.1.7
- Added .gitattributes to .gitignore file
- Minor tweaks to examples
0.1.6
- Addition of alias string option
- Minor changes to examples
- Minor fixes to tests
0.1.5
- Bug fixes
- Minor changes to examples
0.1.4
- Removed callFunctions option (functionality already provided by convertMap option)
- Removed wrapArray option (functionality already provided by existing array functionality)
- Escape numbers when at tbe beginning of an element name
- Edits to documentation
- Added tests
- Added copyright headers to individual JS files
0.1.3
- Fixed crash when undefined objects are converted to strings
- Added callFunctions option
- Added wrapArray option
- Added useCDATA option
- Added convertMap option
- Added copyright year and "and other contributors" to license
0.1.2
- Fixed crash when null objects are converted to strings
0.1.1
- Fixed accidental truncation of XML when pretty-printing is disabled
- Removed copyright year from license
0.1.0