Additional Processing via Custom Functions
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:
var js = convert.xml2js(xml, {compact: false, elementNameFn: function(name) {
return name.toUpperCase();
}});