| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| Additional Processing via Custom Functions source code.tar.gz | 2017-12-17 | 327.2 kB | |
| Additional Processing via Custom Functions source code.zip | 2017-12-17 | 336.8 kB | |
| README.md | 2017-12-17 | 379 Bytes | |
| Totals: 3 Items | 664.4 kB | 0 | |
This release adds a major feature that allows to pass in custom functions for additional processing.
Example to make all parsed element names in upper case:
:::js
var js = convert.xml2js(xml, {compact: false, elementNameFn: function(name) {
return name.toUpperCase();
}});