Open jasonperrone opened 1 year ago
xml2js version 0.4.23.
Given this code:
const builder = new xml2js.Builder({tagNameProcessors: [upperMe]}); return builder.buildObject(myObj); function upperMe(name) { return name.toUpperCase(); }
The upperMe function does not get called.
xml2js version 0.4.23.
Given this code:
The upperMe function does not get called.