Jstoxml Versions Save

JavaScript object to XML converter (useful for RSS, podcasts, GPX, AMP, etc)

v5.0.1

2 months ago

v5.0.0

3 months ago
  • (breaking) upgrade to Prettier 3. This shouldn't affect the vast majority of users, as this is a dev dependency only.
  • misc dependency updates

v3.2.10

6 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/davidcalhoun/jstoxml/compare/v3.2.9...v3.2.10

v3.2.9

6 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/davidcalhoun/jstoxml/compare/v3.2.8...v3.2.9

v3.2.8

8 months ago

What's Changed

Full Changelog: https://github.com/davidcalhoun/jstoxml/compare/v3.2.7...v3.2.8

v3.2.7

1 year ago
  • update package-lock, fix Dependabot issue (Prototype Pollution in JSON5 via Parse Method)

v3.2.6

1 year ago

v3.2.5

1 year ago

v3.2.0

2 years ago
  • new config option selfCloseTags added which is used as an easier global setting to enable/disable self-closing tags.

v3.1.0

2 years ago
  • config option contentMap can now be passed to transform any XML content. For instance, if you want <a>null</a> to instead appear as <a></a> you pass in contentMap: (content) => { return content === null ? '' : content }
  • fixed an issue with improper line breaks and indenting with null content