node-xmlreader
node-xmlreader copied to clipboard
An xml reader for node that uses a different approach than all other xml readers/parsers out there
When having an empty tag like : and trying to get text() from value tag library returns "TypeError: xml.value.text() is not a function."
I need to write a condition to test whether an element exists in the xml data that is returned by an api. Can any one help me out as to,...
I think, the each function ``` script if(object.array){ object.each = function(callback){ for(var i in object.array){ if(callback(i, object.array[i])) break; } return; } } ``` should be changed to be this: ```...