I have some xml that I have parsed using npms xml2js. It has a few namespaces in the xml and when I parse it and inspect the results I get this...
Cool. I can go to steps deep by doing this console.log(result['bpr:release']['bpr:contents']) which yeilds this..
Want I want to do now is try and drill into those child nodes like process and process group but I can't figure out how or find an documentation on it. I tried things like result['bpr:release']['bpr:contents'].process and result['bpr:release']['bpr:contents']['process'] and neither works. What's the proper way of doing this?