mirror of
https://github.com/leanote/desktop-app.git
synced 2025-10-18 17:52:17 +00:00
add node_modules
This commit is contained in:
26
node_modules/xml2js/x.js
generated
vendored
Normal file
26
node_modules/xml2js/x.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
var util = require('util');
|
||||
var xml2js = require('xml2js');
|
||||
|
||||
var myxml = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?> \
|
||||
<Items> \
|
||||
<Item> \
|
||||
<id>1</id> \
|
||||
<color>green</color> \
|
||||
</Item> \
|
||||
<Item> \
|
||||
<id>2</id> \
|
||||
<color>red</color> \
|
||||
</Item> \
|
||||
<Item> \
|
||||
<id>3</id> \
|
||||
<color>yellow</color> \
|
||||
</Item> \
|
||||
</Items>"
|
||||
var myxml = "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\
|
||||
<empty />"
|
||||
|
||||
xml2js.parseString(myxml, function (e, r) {
|
||||
console.log(util.inspect(r, false, null));
|
||||
//console.log(new xml2js.Builder().buildObject(r));
|
||||
});
|
||||
|
Reference in New Issue
Block a user