mirror of
https://github.com/leanote/desktop-app.git
synced 2025-10-15 07:31:33 +00:00
8 lines
216 B
JavaScript
8 lines
216 B
JavaScript
var xml2js = require('xml2js');
|
|
var parser = new xml2js.Parser({
|
|
mergeAttrs: true
|
|
});
|
|
parser.parseString('<outline xmlUrl="http://www.futurity.org/feed/"/>', function (err, result) {
|
|
console.dir(result);
|
|
});
|