Looking for the optimal javascript function, plugin, or library to effectively transform an XML string into JSON format.
One tool I came across is , but unfortunately, it struggles with strings that begin with 0
. For example, 005321
may end up converted to 2769
, which is not ideal.
So my question remains, what is the most reliable tool in javascript for converting XML to JSON?
EDIT: Has anyone found a solution that works seamlessly for this process?