node-xml
========
An XML parsing library that produces a tree data structure.
Usage
-----
```js
import Node from 'jibo-node-xml';
import { Parser } from 'jibo-node-xml';
// We parse some XML text and receive a Node
let root = Parser.parseXML('Test test test ');
console.log(root.toString(true));
// Output:
//
//
//
//
//
//
let tagNode = root.findFirstChildType('someTag');
console.log(tagNode.toString(true));
// Output:
//
//
//
```